In [ ]:
# Author: Stephen Situ
# Cassandra is a popular column-oriented NoSQL database that is known for its scalability and high availability without a single
# point of failure. In this project, we practice CRUD operations on a DataStax Astra database. Creating Cassandra keyspaces requires 
# stating the strategy of data distribution along with a replication factor. Cassandra uses an SQL like language called CQL (Cassandra
# Query Language). Cassandra does not have all the functionality of relational databases like joins, but has other useful features like TTL 
# (time to live). 
In [83]:
# Connect to DataStax Astra Cassandra database
from cassandra.cluster import Cluster
from cassandra.auth import PlainTextAuthProvider

cloud_config= {
         'secure_connect_bundle': 'secure-connect-test.zip'
}
auth_provider = PlainTextAuthProvider('sunXcPShwtxuWkuBYMxOTZQF', 'K33eeqxofgRSA8Aas60yMQRYiKWRK72vDZm0HvwLy.x0Si6Z9,FZ7ioE8-LLKLEwgbROdeNJ0nv9tIw_kTTfUZRTkBrM-j1KhMz3l1F0e2KziG69biHpSetIk_53KMd,')
cluster = Cluster(cloud=cloud_config, auth_provider=auth_provider)
session = cluster.connect()

row = session.execute("select release_version from system.local").one()
if row:
      print(row[0])
else:
      print("An error occurred.")
4.0.0.6816
In [36]:
# Read "chipotle_store" table in a keyspace "testing"
rows = session.execute('SELECT * FROM testing.chipotle_stores')
for row in rows:
    print(row)
Row(state='Indiana', location='Aurora', address='1040 Green Blvd Rte 50 Aurora, IN 47001 US', latitude=Decimal('39.078146061122055'), longitude=Decimal('-84.88934078711985'))
Row(state='Indiana', location='Avon', address='10403 E US Highway 36 Avon, IN 46123 US', latitude=Decimal('39.76289590917597'), longitude=Decimal('-86.33836394756969'))
Row(state='Indiana', location='Bloomington', address='420 E Kirkwood Ave Bloomington, IN 47408 US', latitude=Decimal('39.16628573814985'), longitude=Decimal('-86.52904216165928'))
Row(state='Indiana', location='Carmel', address='2420 E 146th St Carmel, IN 46033 US', latitude=Decimal('40.00077215103104'), longitude=Decimal('-86.1189465067486'))
Row(state='Indiana', location='Columbus', address='2260 N National Rd Columbus, IN 47201 US', latitude=Decimal('39.22101991625809'), longitude=Decimal('-85.88924752302523'))
Row(state='Indiana', location='Crown Point', address='10715 Broadway Crown Point, IN 46307 US', latitude=Decimal('41.422845'), longitude=Decimal('-87.334767'))
Row(state='Indiana', location='Evansville', address='499 N Green River Rd Ste A Evansville, IN 47715 US', latitude=Decimal('37.98082540579189'), longitude=Decimal('-87.49201180387706'))
Row(state='Indiana', location='Fishers', address='9760 E 116th St Fishers, IN 46037 US', latitude=Decimal('39.957419'), longitude=Decimal('-85.99731870000001'))
Row(state='Indiana', location='Fort Wayne', address='910 E Coliseum Blvd Fort Wayne, IN 46805 US', latitude=Decimal('41.11749543367268'), longitude=Decimal('-85.12841851761873'))
Row(state='Indiana', location='Highland', address='10343 Indianapolis Blvd Ste 101 Highland, IN 46322 US', latitude=Decimal('41.52539694860443'), longitude=Decimal('-87.4704855706176'))
Row(state='Indiana', location='Indianapolis', address='8812 US 31 S Ste D Indianapolis, IN 46227 US', latitude=Decimal('39.6382625731181'), longitude=Decimal('-86.12946814924818'))
Row(state='Indiana', location='Kokomo', address='1201 S Reed Rd Ste B Kokomo, IN 46902 US', latitude=Decimal('40.4737515'), longitude=Decimal('-86.10872990000001'))
Row(state='Indiana', location='Lafayette', address='4030 South St Lafayette, IN 47905 US', latitude=Decimal('40.418468213990714'), longitude=Decimal('-86.82954387532425'))
Row(state='Indiana', location='Merrillville', address='1948 Southlake Mall Merrillville, IN 46410 US', latitude=Decimal('41.47073699023677'), longitude=Decimal('-87.3108303963299'))
Row(state='Indiana', location='Michigan City', address='5218 Franklin St Michigan City, IN 46360 US', latitude=Decimal('41.673380954642326'), longitude=Decimal('-86.89335480398461'))
Row(state='Indiana', location='Mishawaka', address='5545 N Main St Mishawaka, IN 46545 US', latitude=Decimal('41.710280834399036'), longitude=Decimal('-86.18070116590599'))
Row(state='Indiana', location='Munster', address='8201 Calumet Ave Munster, IN 46321 US', latitude=Decimal('41.56395893764176'), longitude=Decimal('-87.50843999508913'))
Row(state='Indiana', location='Noblesville', address='12831 Campus Pkwy E Noblesville, IN 46060 US', latitude=Decimal('39.99589045731474'), longitude=Decimal('-85.93711365087654'))
Row(state='Indiana', location='Plainfield', address='350 S Perry Rd Plainfield, IN 46168 US', latitude=Decimal('39.713918794225286'), longitude=Decimal('-86.35595401780138'))
Row(state='Indiana', location='Portage', address='6040 US Highway 6 Portage, IN 46368 US', latitude=Decimal('41.55118547337976'), longitude=Decimal('-87.18085139238609'))
Row(state='Indiana', location='Richmond', address='3726 National Rd E Richmond, IN 47374 US', latitude=Decimal('39.83144389393682'), longitude=Decimal('-84.84945814532084'))
Row(state='Indiana', location='South Bend', address='202 W Ireland Rd 102 South Bend, IN 46614 US', latitude=Decimal('41.628513'), longitude=Decimal('-86.252848'))
Row(state='Indiana', location='Speedway', address='6321 Crawfordsville Rd Speedway, IN 46224 US', latitude=Decimal('39.79993664159451'), longitude=Decimal('-86.27169572921116'))
Row(state='Indiana', location='Valparaiso', address='2505 Laporte Ave Ste 121 Valparaiso, IN 46383 US', latitude=Decimal('41.469073725222344'), longitude=Decimal('-87.03010219694158'))
Row(state='Indiana', location='West Lafayette', address='2400 N Salisbury St West Lafayette, IN 47906 US', latitude=Decimal('40.4521423'), longitude=Decimal('-86.9153283'))
Row(state='Indiana', location='Westfield', address='829 E Sr 32 Suite 835 Westfield, IN 46074 US', latitude=Decimal('40.04231'), longitude=Decimal('-86.14228709999999'))
Row(state='Florida', location='Altamonte Springs', address='400 W State Road 436 Altamonte Springs, FL 32714 US', latitude=Decimal('28.661298307235594'), longitude=Decimal('-81.39668856209812'))
Row(state='Florida', location='Apopka', address='2201 E Semoran Blvd Apopka, FL 32703 US', latitude=Decimal('28.673551495033866'), longitude=Decimal('-81.46992335735763'))
Row(state='Florida', location='Aventura', address='18815 Biscayne Blvd Aventura, FL 33180 US', latitude=Decimal('25.95018503822516'), longitude=Decimal('-80.14567645491081'))
Row(state='Florida', location='Boca Raton', address='9930 Glades Rd Ste F8 Boca Raton, FL 33434 US', latitude=Decimal('26.366093'), longitude=Decimal('-80.20238'))
Row(state='Florida', location='Boynton Beach', address='8790 Boynton Beach Blvd Bldg B1 Boynton Beach, FL 33472 US', latitude=Decimal('26.527144099999997'), longitude=Decimal('-80.18605129999999'))
Row(state='Florida', location='Bradenton', address='1608 Cortez Rd W Bradenton, FL 34207 US', latitude=Decimal('27.463184540263185'), longitude=Decimal('-82.57834493108193'))
Row(state='Florida', location='Brandon', address='829 E Bloomingdale Ave Brandon, FL 33511 US', latitude=Decimal('27.893182399999997'), longitude=Decimal('-82.27239490000001'))
Row(state='Florida', location='Brooksville', address='13207 Cortez Blvd Brooksville, FL 34613 US', latitude=Decimal('28.5342859'), longitude=Decimal('-82.50660359999999'))
Row(state='Florida', location='Cape Coral', address='2207 Del Prado Blvd S Cape Coral, FL 33990 US', latitude=Decimal('26.610982702781204'), longitude=Decimal('-81.94054500320021'))
Row(state='Florida', location='Clearwater', address='5360 E Bay Dr Clearwater, FL 33764 US', latitude=Decimal('27.916835974551216'), longitude=Decimal('-82.7314448417162'))
Row(state='Florida', location='Clermont', address='1495 E Hwy 50 Ste 200 Clermont, FL 34711 US', latitude=Decimal('28.545698702412185'), longitude=Decimal('-81.73009849431195'))
Row(state='Florida', location='Coral Springs', address='4600 N University Dr Coral Springs, FL 33067 US', latitude=Decimal('26.2874054'), longitude=Decimal('-80.25111319999999'))
Row(state='Florida', location='Cutler Bay', address='19151 S Dixie Hwy Unit 25 Cutler Bay, FL 33157 US', latitude=Decimal('25.589630800000002'), longitude=Decimal('-80.3586636'))
Row(state='Florida', location='Dania Beach', address='1780 Stirling Rd Ste 106 Dania Beach, FL 33004 US', latitude=Decimal('26.048696640210967'), longitude=Decimal('-80.1595036162068'))
Row(state='Florida', location='Davenport', address='1091 Posner Blvd Davenport, FL 33837 US', latitude=Decimal('28.2252006'), longitude=Decimal('-81.643959'))
Row(state='Florida', location='Davie', address='5796 South University Dr Ste 103 Davie, FL 33328 US', latitude=Decimal('26.047042315061336'), longitude=Decimal('-80.25105429780949'))
Row(state='Florida', location='Daytona Beach', address='2400 W International Speedway Blvd Ste 730 Daytona Beach, FL 32114 US', latitude=Decimal('29.1808274953128'), longitude=Decimal('-81.08063715580238'))
Row(state='Florida', location='Deerfield Beach', address='777 S Federal Hwy Deerfield Beach, FL 33441 US', latitude=Decimal('26.30708740220849'), longitude=Decimal('-80.09320808252356'))
Row(state='Florida', location='Deland', address='2335 S. Woodland Blvd. Deland, FL 32720 US', latitude=Decimal('28.987153204555412'), longitude=Decimal('-81.29931060508511'))
Row(state='Florida', location='Delray Beach', address='520 Linton Blvd Ste 101 Delray Beach, FL 33444 US', latitude=Decimal('26.439193989839612'), longitude=Decimal('-80.07845578886025'))
Row(state='Florida', location='Destin', address='4281 Legendary Dr # J-114 Destin, FL 32541 US', latitude=Decimal('30.3899771'), longitude=Decimal('-86.42493520000001'))
Row(state='Florida', location='Doral', address='2000 NW 87th Ave Ste 1 Doral, FL 33172 US', latitude=Decimal('25.793446300000003'), longitude=Decimal('-80.33756740000001'))
Row(state='Florida', location='Estero', address='22941 Lyden Dr Estero, FL 33928 US', latitude=Decimal('26.403546000000002'), longitude=Decimal('-81.811326'))
Row(state='Florida', location='Fern Park', address='103 State Road 436 Fern Park, FL 32730 US', latitude=Decimal('28.659691100000003'), longitude=Decimal('-81.3407499'))
Row(state='Florida', location='Fort Lauderdale', address='4850 N Federal Hwy Fort Lauderdale, FL 33308 US', latitude=Decimal('26.18776079655633'), longitude=Decimal('-80.11555793005942'))
Row(state='Florida', location='Fort Myers', address='8061 Dani Dr Ste 140 Fort Myers, FL 33966 US', latitude=Decimal('26.6083701'), longitude=Decimal('-81.8105661'))
Row(state='Florida', location='Ft Lauderdale', address='6320 N Andrews Ave Ft Lauderdale, FL 33309 US', latitude=Decimal('26.204786342170173'), longitude=Decimal('-80.14741756625307'))
Row(state='Florida', location='Gainesville', address='3841 SW Archer Rd Unit A Gainesville, FL 32608 US', latitude=Decimal('29.61940629219505'), longitude=Decimal('-82.38130672684524'))
Row(state='Florida', location='Greenacres', address='6714 Forest Hill Blvd Greenacres, FL 33413 US', latitude=Decimal('26.648235577414606'), longitude=Decimal('-80.14615552532428'))
Row(state='Florida', location='Hialeah', address='7925 Hialeah Gardens Blvd Ste 1 Hialeah, FL 33018 US', latitude=Decimal('25.89481690606795'), longitude=Decimal('-80.35074015027618'))
Row(state='Florida', location='Hollywood', address='1774 Sheridan St Hollywood, FL 33020 US', latitude=Decimal('26.03305611548679'), longitude=Decimal('-80.1420688426424'))
Row(state='Florida', location='Homestead', address='2500 NE 10th Ct Homestead, FL 33033 US', latitude=Decimal('25.479008795929524'), longitude=Decimal('-80.44192050166987'))
Row(state='Florida', location='Jacksonville', address='9671 Argyle Forest Blvd Jacksonville, FL 32222 US', latitude=Decimal('30.196356'), longitude=Decimal('-81.829889'))
Row(state='Florida', location='Jacksonville Beach', address='1758 3rd St S Jacksonville Beach, FL 32250 US', latitude=Decimal('30.27124704229885'), longitude=Decimal('-81.38887430491081'))
Row(state='Florida', location='Jupiter', address='6274 W Indiantown Rd Ste A Jupiter, FL 33458 US', latitude=Decimal('26.934163'), longitude=Decimal('-80.13063129999999'))
Row(state='Florida', location='Kissimmee', address='6210 W Irlo Bronson Memorial Hwy Kissimmee, FL 34747 US', latitude=Decimal('28.3321649'), longitude=Decimal('-81.5327309'))
Row(state='Florida', location='Lake Mary', address='4315 W Lake Mary Blvd Lake Mary, FL 32746 US', latitude=Decimal('28.75567321255564'), longitude=Decimal('-81.35075833804609'))
Row(state='Florida', location='Lake Worth', address='6177 S Jog Rd Ste D15 Lake Worth, FL 33467 US', latitude=Decimal('26.587601199999998'), longitude=Decimal('-80.14852789999998'))
Row(state='Florida', location='Lakeland', address='4204 US Hwy 98 N Ste 110 Lakeland, FL 33809 US', latitude=Decimal('28.095837300000003'), longitude=Decimal('-81.9746955'))
Row(state='Florida', location='Lakewood Ranch', address='11715 State Road 70 E Lakewood Ranch, FL 34202 US', latitude=Decimal('27.432129200000002'), longitude=Decimal('-82.42110339999998'))
Row(state='Florida', location='Largo', address='10160 Ulmerton Rd Largo, FL 33771 US', latitude=Decimal('27.89409106603983'), longitude=Decimal('-82.7800365909149'))
Row(state='Florida', location='Lauderhill', address='5435 N University Dr Lauderhill, FL 33351 US', latitude=Decimal('26.191549305741724'), longitude=Decimal('-80.25268509264242'))
Row(state='Florida', location='Lutz', address='25442 Sierra Center Boulevard Lutz, FL 33559 US', latitude=Decimal('28.193343199999997'), longitude=Decimal('-82.39546870000001'))
Row(state='Florida', location='Melbourne', address='2322 Harnett Dr Melbourne, FL 32940 US', latitude=Decimal('28.23914143969696'), longitude=Decimal('-80.72848018019351'))
Row(state='Florida', location='Miami', address='7230 NW 36th St 1 Miami, FL 33166 US', latitude=Decimal('25.808823561272412'), longitude=Decimal('-80.31533221824446'))
Row(state='Florida', location='Miami Lakes', address='8000 NW 154th St Miami Lakes, FL 33016 US', latitude=Decimal('25.912861175343586'), longitude=Decimal('-80.33091748189452'))
Row(state='Florida', location='Miramar', address='3231 SW 160th Ave Ste 101 Miramar, FL 33027 US', latitude=Decimal('25.98021333798026'), longitude=Decimal('-80.35695227086677'))
Row(state='Florida', location='Mount Dora', address='19025 US Highway 441 Mount Dora, FL 32757 US', latitude=Decimal('28.8247207707714'), longitude=Decimal('-81.64073361104509'))
Row(state='Florida', location='Naples', address='9100 Strada Pl Ste 2110 Naples, FL 34108 US', latitude=Decimal('26.254102000000003'), longitude=Decimal('-81.8001898'))
Row(state='Florida', location='New Port Richey', address='3286 Word Way G1 New Port Richey, FL 34653 US', latitude=Decimal('28.205312899999996'), longitude=Decimal('-82.6666684'))
Row(state='Florida', location='North Miami', address='14776 Biscayne Blvd North Miami, FL 33181 US', latitude=Decimal('25.912530237601928'), longitude=Decimal('-80.15779178613366'))
Row(state='Florida', location='North Port', address='17019 Tamiami Trl North Port, FL 34287 US', latitude=Decimal('27.0373333139289'), longitude=Decimal('-82.21619476901434'))
Row(state='Florida', location='Ocala', address='2645 SW College Rd Unit 103 Ocala, FL 34471 US', latitude=Decimal('29.16710004882106'), longitude=Decimal('-82.16838951135895'))
Row(state='Florida', location='Ocoee', address='10149 W Colonial Dr Ocoee, FL 34761 US', latitude=Decimal('28.552485712594574'), longitude=Decimal('-81.52695894995905'))
Row(state='Florida', location='Orlando', address='9202 Jeff Fuqua Blvd Ste 1427 Orlando, FL 32827 US', latitude=Decimal('28.435468'), longitude=Decimal('-81.301371'))
Row(state='Florida', location='Ormond Beach', address='1290 W Granada Blvd Ste 300 Ormond Beach, FL 32174 US', latitude=Decimal('29.26379913634666'), longitude=Decimal('-81.10531615000002'))
Row(state='Florida', location='Oviedo', address='327 E Mitchell Hammock Rd 1021 Oviedo, FL 32765 US', latitude=Decimal('28.6562891'), longitude=Decimal('-81.2033689'))
Row(state='Florida', location='Palm Beach Gardens', address='5240 Donald Ross Rd Ste 130 Palm Beach Gardens, FL 33418 US', latitude=Decimal('26.88254681591813'), longitude=Decimal('-80.11550597019061'))
Row(state='Florida', location='Palm Coast', address='5860 State Road 100 E Unit 200 Palm Coast, FL 32164 US', latitude=Decimal('29.47629790068649'), longitude=Decimal('-81.19619296519619'))
Row(state='Florida', location='Palm Harbor', address='33121 US Highway 19 N Palm Harbor, FL 34684 US', latitude=Decimal('28.07317466907305'), longitude=Decimal('-82.7382977190582'))
Row(state='Florida', location='Panama City', address='500 E 23rd St Panama City, FL 32405 US', latitude=Decimal('30.1889939'), longitude=Decimal('-85.6538631'))
Row(state='Florida', location='Panama City Beach', address='100 S Pier Park Dr Ste 100 Panama City Beach, FL 32413 US', latitude=Decimal('30.223832199999997'), longitude=Decimal('-85.872215'))
Row(state='Florida', location='Pembroke Pines', address='15880 Pines Blvd Pembroke Pines, FL 33027 US', latitude=Decimal('26.00678298241768'), longitude=Decimal('-80.35630208374687'))
Row(state='Florida', location='Pensacola', address='1674 E Nine Mile Rd Ste A Pensacola, FL 32514 US', latitude=Decimal('30.533120899999997'), longitude=Decimal('-87.2275807'))
Row(state='Florida', location='Pinecrest', address='12227 South Dixie Highway Pinecrest, FL 33156 US', latitude=Decimal('25.65706049233349'), longitude=Decimal('-80.32749741359395'))
Row(state='Florida', location='Pinellas Park', address='3700 Park Blvd N Pinellas Park, FL 33781 US', latitude=Decimal('27.838771062640056'), longitude=Decimal('-82.68466530022113'))
Row(state='Florida', location='Plantation', address='1760 N University Dr 2 Plantation, FL 33322 US', latitude=Decimal('26.147191'), longitude=Decimal('-80.25638599999999'))
Row(state='Florida', location='Pompano Beach', address='2390 N Federal Hwy Ste 104 Pompano Beach, FL 33062 US', latitude=Decimal('26.260656561863836'), longitude=Decimal('-80.09890992773741'))
Row(state='Florida', location='Port Orange', address='1731 Dunlawton Ave Ste 103 Port Orange, FL 32127 US', latitude=Decimal('29.111368109173387'), longitude=Decimal('-81.02645685337295'))
Row(state='Florida', location='Port Richey', address='9203 US Highway 19 Port Richey, FL 34668 US', latitude=Decimal('28.29081058897905'), longitude=Decimal('-82.7119125003145'))
Row(state='Florida', location='Port Saint Lucie', address='1768 SW Saint Lucie West Blvd Port Saint Lucie, FL 34986 US', latitude=Decimal('27.31065261994452'), longitude=Decimal('-80.4064213527613'))
Row(state='Florida', location='Saint Augustine', address='1753 US Highway 1 S Saint Augustine, FL 32084 US', latitude=Decimal('29.86960754507471'), longitude=Decimal('-81.32389500193709'))
Row(state='Florida', location='Saint Cloud', address='4351 13th St Saint Cloud, FL 34769 US', latitude=Decimal('28.25254373591171'), longitude=Decimal('-81.31628410921002'))
Row(state='Florida', location='Saint Petersburg', address='780 4th St N Saint Petersburg, FL 33701 US', latitude=Decimal('27.780136300000002'), longitude=Decimal('-82.6387503'))
Row(state='Florida', location='Sanford', address='1805 WP Ball Blvd Sanford, FL 32771 US', latitude=Decimal('28.800225899999997'), longitude=Decimal('-81.3336244'))
Row(state='Florida', location='Sarasota', address='97 N Cattlemen Rd Sarasota, FL 34243 US', latitude=Decimal('27.387687815869647'), longitude=Decimal('-82.45813989871294'))
Row(state='Florida', location='Seminole', address='11241 Park Blvd Seminole, FL 33772 US', latitude=Decimal('27.84161002377737'), longitude=Decimal('-82.79448579599801'))
Row(state='Florida', location='South Miami', address='6290 S Dixie Hwy South Miami, FL 33143 US', latitude=Decimal('25.699524794387173'), longitude=Decimal('-80.2950114926424'))
Row(state='Florida', location='Stuart', address='2421 NW Federal Hwy Stuart, FL 34994 US', latitude=Decimal('27.234784718273797'), longitude=Decimal('-80.26763416845246'))
Row(state='Florida', location='Sunrise', address='12801 W Sunrise Blvd Ofc F231 Sunrise, FL 33323 US', latitude=Decimal('26.14989882011175'), longitude=Decimal('-80.32448515428177'))
Row(state='Florida', location='Tallahassee', address='699 W Gaines St Tallahassee, FL 32304 US', latitude=Decimal('30.435311699999996'), longitude=Decimal('-84.29262170000001'))
Row(state='Florida', location='Tampa', address='9466 W Linebaugh Ave Tampa, FL 33626 US', latitude=Decimal('28.043468'), longitude=Decimal('-82.590389'))
Row(state='Florida', location='Temple Terrace', address='5114 E Fowler Ave Ste 101 Temple Terrace, FL 33617 US', latitude=Decimal('28.0547369'), longitude=Decimal('-82.39909320000001'))
Row(state='Florida', location='Vero Beach', address='5855 20th St Unit 101 Vero Beach, FL 32966 US', latitude=Decimal('27.638264447032622'), longitude=Decimal('-80.4479837274123'))
Row(state='Florida', location='Wellington', address='1000 S State Road 7 Ste 2 Wellington, FL 33414 US', latitude=Decimal('26.663797'), longitude=Decimal('-80.20215300000001'))
Row(state='Florida', location='West Palm Beach', address='2380 Palm Beach Lakes Blvd West Palm Beach, FL 33409 US', latitude=Decimal('26.708201000000003'), longitude=Decimal('-80.098556'))
Row(state='Florida', location='Weston', address='4477 Weston Rd # 79 Weston, FL 33331 US', latitude=Decimal('26.067603'), longitude=Decimal('-80.363058'))
Row(state='Florida', location='Windermere', address='9100 Conroy Windermere Rd Ste 120 Windermere, FL 34786 US', latitude=Decimal('28.493174100000005'), longitude=Decimal('-81.5092683'))
Row(state='Florida', location='Winter Garden', address='3317 Daniels Rd Ste 102 Winter Garden, FL 34787 US', latitude=Decimal('28.520862925627803'), longitude=Decimal('-81.58684953378031'))
Row(state='Florida', location='Winter Haven', address='804 Cypress Gardens Blvd Winter Haven, FL 33880 US', latitude=Decimal('28.003602586341753'), longitude=Decimal('-81.71751414785041'))
Row(state='Florida', location='Winter Park', address='525 S Orlando Ave Winter Park, FL 32789 US', latitude=Decimal('28.593631990206827'), longitude=Decimal('-81.36531549502969'))
Row(state='Florida', location='Winter Springs', address='5637 Red Bug Lake Rd Winter Springs, FL 32708 US', latitude=Decimal('28.646934499999997'), longitude=Decimal('-81.2700902'))
Row(state='Delaware', location='Dover', address='1141 N Dupont Hwy Ste 101 Dover, DE 19901 US', latitude=Decimal('39.18678446887631'), longitude=Decimal('-75.53655817470087'))
Row(state='Delaware', location='Middletown', address='657 Middletown Warwick Rd Middletown, DE 19709 US', latitude=Decimal('39.445806320216654'), longitude=Decimal('-75.73467347927613'))
Row(state='Delaware', location='New Castle', address='115A S Dupont Hwy New Castle, DE 19720 US', latitude=Decimal('39.66378445341222'), longitude=Decimal('-75.60687249570083'))
Row(state='Delaware', location='Newark', address='60 Geoffrey Dr Newark, DE 19713 US', latitude=Decimal('39.68767491052315'), longitude=Decimal('-75.6524534861437'))
Row(state='Delaware', location='Rehoboth Beach', address='36453 Seaside Outlet Dr Rehoboth Beach, DE 19971 US', latitude=Decimal('38.717843'), longitude=Decimal('-75.111239'))
Row(state='Delaware', location='Wilmington', address='3700 Kirkwood Hwy Wilmington, DE 19808 US', latitude=Decimal('39.73293717615314'), longitude=Decimal('-75.63955922368905'))
Row(state='Rhode Island', location='Cranston', address='87 Hillside Rd Cranston, RI 02920 US', latitude=Decimal('41.76178529999999'), longitude=Decimal('-71.45883520000001'))
Row(state='Rhode Island', location='East Greenwich', address='1191 Division Street East Greenwich, RI 02818 US', latitude=Decimal('41.6633042'), longitude=Decimal('-71.49447740000001'))
Row(state='Rhode Island', location='Johnston', address='1386 Atwood Ave Johnston, RI 02919 US', latitude=Decimal('41.81454904551709'), longitude=Decimal('-71.49643589650555'))
Row(state='Rhode Island', location='Lincoln', address='622 George Washington Hwy Lincoln, RI 02865 US', latitude=Decimal('41.93836596159589'), longitude=Decimal('-71.47736610185241'))
Row(state='Rhode Island', location='Middletown', address='11 E Main Rd Middletown, RI 02842 US', latitude=Decimal('41.51654425076423'), longitude=Decimal('-71.29926721917258'))
Row(state='Rhode Island', location='Providence', address='235 Thayer St Providence, RI 02906 US', latitude=Decimal('41.828201801667696'), longitude=Decimal('-71.40055386775839'))
Row(state='Rhode Island', location='Smithfield', address='371 Putnam Pike Smithfield, RI 02917 US', latitude=Decimal('41.870703000000006'), longitude=Decimal('-71.5214'))
Row(state='Rhode Island', location='Warwick', address='969 Bald Hill Rd Warwick, RI 02886 US', latitude=Decimal('41.712294472923496'), longitude=Decimal('-71.48965054356859'))
Row(state='Connecticut', location='Branford', address='2 Commercial Pkwy Branford, CT 06405 US', latitude=Decimal('41.27731142213908'), longitude=Decimal('-72.82831742148959'))
Row(state='Connecticut', location='Bridgeport', address='275 E Main St Bridgeport, CT 06608 US', latitude=Decimal('41.17842823720663'), longitude=Decimal('-73.18194729049281'))
Row(state='Connecticut', location='Canton', address='110 Albany Tpke Ste 301 Canton, CT 06019 US', latitude=Decimal('41.82332322507213'), longitude=Decimal('-72.88322699772891'))
Row(state='Connecticut', location='Danbury', address='7 Backus Ave Ste H100 Danbury, CT 06810 US', latitude=Decimal('41.380326000000004'), longitude=Decimal('-73.47943000000001'))
Row(state='Connecticut', location='Darien', address='I-95 Darien Nb Service Plaza Darien, CT 06820 US', latitude=Decimal('41.080674200000004'), longitude=Decimal('-73.4614135'))
Row(state='Connecticut', location='Enfield', address='7 Hazard Ave Unit A Enfield, CT 06082 US', latitude=Decimal('41.99055716434799'), longitude=Decimal('-72.58473316774234'))
Row(state='Connecticut', location='Fairfield', address='340 Grasmere Ave Ste 1 Fairfield, CT 06824 US', latitude=Decimal('41.15703885362666'), longitude=Decimal('-73.24059272118132'))
Row(state='Connecticut', location='Glastonbury', address='140 Glastonbury Blvd Ste 4 Glastonbury, CT 06033 US', latitude=Decimal('41.72037395884164'), longitude=Decimal('-72.62096590339256'))
Row(state='Connecticut', location='Hamden', address='2165 Dixwell Ave Ste 2 Hamden, CT 06514 US', latitude=Decimal('41.36887694048814'), longitude=Decimal('-72.91832853559936'))
Row(state='Connecticut', location='Manchester', address='48 Hale Road Manchester, CT 06042 US', latitude=Decimal('41.81280599999999'), longitude=Decimal('-72.52711699999998'))
Row(state='Connecticut', location='Middletown', address='808 Washington St Middletown, CT 06457 US', latitude=Decimal('41.55468'), longitude=Decimal('-72.67984'))
Row(state='Connecticut', location='Milford', address='1319 Boston Post Rd Spc 4B Milford, CT 06460 US', latitude=Decimal('41.23845336526143'), longitude=Decimal('-73.0354247760748'))
Row(state='Connecticut', location='New Haven', address='910 Chapel St New Haven, CT 06510 US', latitude=Decimal('41.30639517209296'), longitude=Decimal('-72.92693399222445'))
Row(state='Connecticut', location='Newington', address='3575 Berlin Tpke Unit B Newington, CT 06111 US', latitude=Decimal('41.650065999999995'), longitude=Decimal('-72.729361'))
Row(state='Connecticut', location='Riverside', address='1233 E Putnam Ave Riverside, CT 06878 US', latitude=Decimal('41.04242180892854'), longitude=Decimal('-73.57832704834891'))
Row(state='Connecticut', location='Shelton', address='701 Bridgeport Ave Shelton, CT 06484 US', latitude=Decimal('41.275881975542774'), longitude=Decimal('-73.12399875520805'))
Row(state='Connecticut', location='Southington', address='785 Queen St Unit 1 Southington, CT 06489 US', latitude=Decimal('41.638174'), longitude=Decimal('-72.87337009999999'))
Row(state='Connecticut', location='Wallingford', address='1094 N Colony Rd Ste 20 Wallingford, CT 06492 US', latitude=Decimal('41.497039'), longitude=Decimal('-72.806854'))
Row(state='Connecticut', location='West Hartford', address='966 Farmington Ave West Hartford, CT 06107 US', latitude=Decimal('41.7618893868671'), longitude=Decimal('-72.74307215985726'))
Row(state='Connecticut', location='West Haven', address='354 Saw Mill Rd Unit B West Haven, CT 06516 US', latitude=Decimal('41.27118782688272'), longitude=Decimal('-72.97258820765478'))
Row(state='Connecticut', location='Wethersfield', address='1084 Silas Deane Hwy Wethersfield, CT 06109 US', latitude=Decimal('41.69268358085449'), longitude=Decimal('-72.65518356501956'))
Row(state='Pennsylvania', location='Abington', address='1437 Old York Rd Abington, PA 19001 US', latitude=Decimal('40.123326247662064'), longitude=Decimal('-75.11571011833269'))
Row(state='Pennsylvania', location='Allentown', address='750 N Krocks Rd Allentown, PA 18106 US', latitude=Decimal('40.56458715681943'), longitude=Decimal('-75.56461324722375'))
Row(state='Pennsylvania', location='Allison Park', address='4960 William Flynn Hwy Allison Park, PA 15101 US', latitude=Decimal('40.602171999999996'), longitude=Decimal('-79.945614'))
Row(state='Pennsylvania', location='Altoona', address='1600 Osgood Dr Altoona, PA 16602 US', latitude=Decimal('40.48861928632003'), longitude=Decimal('-78.38671497084738'))
Row(state='Pennsylvania', location='Ardmore', address='133 W Lancaster Ave Ardmore, PA 19003 US', latitude=Decimal('40.0096131'), longitude=Decimal('-75.2936297'))
Row(state='Pennsylvania', location='Bensalem', address='2307 Street Rd Bensalem, PA 19020 US', latitude=Decimal('40.103096'), longitude=Decimal('-74.949341'))
Row(state='Pennsylvania', location='Blue Bell', address='950 Dekalb Pike Suite 630 Blue Bell, PA 19422 US', latitude=Decimal('40.16587639999999'), longitude=Decimal('-75.290719'))
Row(state='Pennsylvania', location='Bridgeville', address='3009 Washington Pike Bridgeville, PA 15017 US', latitude=Decimal('40.3540936'), longitude=Decimal('-80.1143347'))
Row(state='Pennsylvania', location='Camp Hill', address='3216 Trindle Rd Camp Hill, PA 17011 US', latitude=Decimal('40.238452'), longitude=Decimal('-76.9353698'))
Row(state='Pennsylvania', location='Canonsburg', address='3840 Washington Rd Canonsburg, PA 15317 US', latitude=Decimal('40.27406324468554'), longitude=Decimal('-80.12723758589651'))
Row(state='Pennsylvania', location='Carlisle', address='40 Noble Blvd Ste 32 Carlisle, PA 17013 US', latitude=Decimal('40.18990134413791'), longitude=Decimal('-77.1925395542831'))
Row(state='Pennsylvania', location='Chambersburg', address='975 Norland Ave Chambersburg, PA 17201 US', latitude=Decimal('39.94075531060215'), longitude=Decimal('-77.62861013252353'))
Row(state='Pennsylvania', location='Cranberry Township', address='2080 Mackenzie Way Ste B100 Cranberry Township, PA 16066 US', latitude=Decimal('40.686189299999995'), longitude=Decimal('-80.0913449'))
Row(state='Pennsylvania', location='Dickson City', address='1245 Commerce Blvd Dickson City, PA 18519 US', latitude=Decimal('41.4654078452562'), longitude=Decimal('-75.6374655846513'))
Row(state='Pennsylvania', location='Doylestown', address='569 N Main St Doylestown, PA 18901 US', latitude=Decimal('40.323448393508436'), longitude=Decimal('-75.13016015583706'))
Row(state='Pennsylvania', location='Dresher', address='1673 Limekiln Pike Dresher, PA 19025 US', latitude=Decimal('40.1435789369209'), longitude=Decimal('-75.16878450061166'))
Row(state='Pennsylvania', location='East Liberty', address='5986 Centre Ave East Liberty, PA 15206 US', latitude=Decimal('40.4592014'), longitude=Decimal('-79.9252465'))
Row(state='Pennsylvania', location='Easton', address='4743 Freemansburg Ave E105 Easton, PA 18045 US', latitude=Decimal('40.65051714940819'), longitude=Decimal('-75.29493268804606'))
Row(state='Pennsylvania', location='Erie', address='6611 Peach St Erie, PA 16509 US', latitude=Decimal('42.058009600000005'), longitude=Decimal('-80.09014470000001'))
Row(state='Pennsylvania', location='Exton', address='241 N Pottstown Pike Exton, PA 19341 US', latitude=Decimal('40.03266904719225'), longitude=Decimal('-75.63036173834325'))
Row(state='Pennsylvania', location='Glen Mills', address='1751 Wilmington Pike Ste C-3 Glen Mills, PA 19342 US', latitude=Decimal('39.87528823576244'), longitude=Decimal('-75.54410742114658'))
Row(state='Pennsylvania', location='Greensburg', address='2014 Lincoln Pl Greensburg, PA 15601 US', latitude=Decimal('40.304427809518685'), longitude=Decimal('-79.57962629508916'))
Row(state='Pennsylvania', location='Hanover', address='32 Wilson Ave Hanover, PA 17331 US', latitude=Decimal('39.82923652073585'), longitude=Decimal('-76.99810837270185'))
Row(state='Pennsylvania', location='Harrisburg', address='5106 Jonestown Rd Ste I Harrisburg, PA 17112 US', latitude=Decimal('40.312477351657755'), longitude=Decimal('-76.80199208865344'))
Row(state='Pennsylvania', location='Havertown', address='116 W Township Line Rd Ste 206 Havertown, PA 19083 US', latitude=Decimal('39.966856'), longitude=Decimal('-75.3012985'))
Row(state='Pennsylvania', location='Hermitage', address='125 N Hermitage Rd Hermitage, PA 16148 US', latitude=Decimal('41.2347635'), longitude=Decimal('-80.4501641'))
Row(state='Pennsylvania', location='Hershey', address='210 W Chocolate Ave Hershey, PA 17033 US', latitude=Decimal('40.28370487623282'), longitude=Decimal('-76.6546050531813'))
Row(state='Pennsylvania', location='Indiana', address='1781 Oakland Ave Indiana, PA 15701 US', latitude=Decimal('40.61310832538394'), longitude=Decimal('-79.17449146374804'))
Row(state='Pennsylvania', location='King Of Prussia', address='620 W Dekalb Pike King of Prussia, PA 19406 US', latitude=Decimal('40.088432399999995'), longitude=Decimal('-75.38267330000001'))
Row(state='Pennsylvania', location='Lancaster', address='2081 Fruitville Pike Lancaster, PA 17601 US', latitude=Decimal('40.07707336555512'), longitude=Decimal('-76.32557850643138'))
Row(state='Pennsylvania', location='Langhorne', address='2370 E Lincoln Hwy Langhorne, PA 19047 US', latitude=Decimal('40.180207'), longitude=Decimal('-74.8754518'))
Row(state='Pennsylvania', location='Lebanon', address='1451 Quentin Rd Lebanon, PA 17042 US', latitude=Decimal('40.31789827453161'), longitude=Decimal('-76.42434047181034'))
Row(state='Pennsylvania', location='Lewisburg', address='7431 Westbranch Hwy Ste 6 Lewisburg, PA 17837 US', latitude=Decimal('40.98143860572479'), longitude=Decimal('-76.88439792943291'))
Row(state='Pennsylvania', location='Malvern', address='50 National Ave Ste 1100 Malvern, PA 19355 US', latitude=Decimal('40.049349299999996'), longitude=Decimal('-75.518035'))
Row(state='Pennsylvania', location='Mechanicsburg', address='6455 Carlisle Pike Ste B Mechanicsburg, PA 17050 US', latitude=Decimal('40.246018229009216'), longitude=Decimal('-77.01442406826686'))
Row(state='Pennsylvania', location='Media', address='1075 W Baltimore Pike Ste L Media, PA 19063 US', latitude=Decimal('39.91446337705265'), longitude=Decimal('-75.43287650346122'))
Row(state='Pennsylvania', location='Monroeville', address='4137 William Penn Hwy Monroeville, PA 15146 US', latitude=Decimal('40.43916823138253'), longitude=Decimal('-79.7669307975359'))
Row(state='Pennsylvania', location='Murrysville', address='4899 William Penn Hwy Murrysville, PA 15668 US', latitude=Decimal('40.421806'), longitude=Decimal('-79.66153800000001'))
Row(state='Pennsylvania', location='Newtown', address='2940 S Eagle Rd Newtown, PA 18940 US', latitude=Decimal('40.235627799999996'), longitude=Decimal('-74.94184809999999'))
Row(state='Pennsylvania', location='Newtown Square', address='3741 W Chester Pike Newtown Square, PA 19073 US', latitude=Decimal('39.98705958781588'), longitude=Decimal('-75.40546109452112'))
Row(state='Pennsylvania', location='North Wales', address='30 Airport Square North Wales, PA 19454 US', latitude=Decimal('40.24067086500817'), longitude=Decimal('-75.24190635096545'))
Row(state='Pennsylvania', location='Philadelphia', address='9173 Roosevelt Blvd Philadelphia, PA 19114 US', latitude=Decimal('40.074281899999995'), longitude=Decimal('-75.0331506'))
Row(state='Pennsylvania', location='Pittsburgh', address='8870 Covenant Ave Pittsburgh, PA 15237 US', latitude=Decimal('40.5688740099056'), longitude=Decimal('-80.02325861680208'))
Row(state='Pennsylvania', location='Plymouth Meeting', address='500 W Germantown Pike Ste 2200 Plymouth Meeting, PA 19462 US', latitude=Decimal('40.116128873194974'), longitude=Decimal('-75.282143524498'))
Row(state='Pennsylvania', location='Reading', address='2733 Papermill Rd Ste X5 Reading, PA 19610 US', latitude=Decimal('40.35730324034379'), longitude=Decimal('-75.9834907900012'))
Row(state='Pennsylvania', location='Selinsgrove', address='2192 N Susquehanna Trl Selinsgrove, PA 17870 US', latitude=Decimal('40.837371442582175'), longitude=Decimal('-76.83216301892759'))
Row(state='Pennsylvania', location='Shrewsbury', address='98 Sofia Dr Ste E Shrewsbury, PA 17361 US', latitude=Decimal('39.76977917118235'), longitude=Decimal('-76.6723831513773'))
Row(state='Pennsylvania', location='Springfield', address='801 Baltimore Pike Springfield, PA 19064 US', latitude=Decimal('39.91641365467459'), longitude=Decimal('-75.33377060920999'))
Row(state='Pennsylvania', location='State College', address='1850 North Atherton St. State College, PA 16803 US', latitude=Decimal('40.80866833'), longitude=Decimal('-77.90373667'))
Row(state='Pennsylvania', location='Temple', address='4300 5th Street Hwy Temple, PA 19560 US', latitude=Decimal('40.39719'), longitude=Decimal('-75.92896'))
Row(state='Pennsylvania', location='Trevose', address='3580 Horizon Blvd Trevose, PA 19053 US', latitude=Decimal('40.137363104178206'), longitude=Decimal('-74.96464817748779'))
Row(state='Pennsylvania', location='Warminster', address='25 W Street Rd Warminster, PA 18974 US', latitude=Decimal('40.19729'), longitude=Decimal('-75.082474'))
Row(state='Pennsylvania', location='Warrington', address='1513 Main St Bldg 500A Warrington, PA 18976 US', latitude=Decimal('40.230946200000005'), longitude=Decimal('-75.1361968'))
Row(state='Pennsylvania', location='Washington', address='187 Old Mill Blvd Washington, PA 15301 US', latitude=Decimal('40.1896141'), longitude=Decimal('-80.218805'))
Row(state='Pennsylvania', location='Wayne', address='323 E Lancaster Ave Wayne, PA 19087 US', latitude=Decimal('40.044244899999995'), longitude=Decimal('-75.3792673'))
Row(state='Pennsylvania', location='West Chester', address='101 Turner Ln West Chester, PA 19380 US', latitude=Decimal('39.969295338504146'), longitude=Decimal('-75.58764102853887'))
Row(state='Pennsylvania', location='Wexford', address='11359 Perry Hwy Wexford, PA 15090 US', latitude=Decimal('40.6229988932946'), longitude=Decimal('-80.05430905889546'))
Row(state='Pennsylvania', location='Whitehall', address='837 Lehigh Lifestyle Ctr Whitehall, PA 18052 US', latitude=Decimal('40.630150366446564'), longitude=Decimal('-75.48025330183509'))
Row(state='Pennsylvania', location='Wilkes Barre', address='280 Mundy St Ste 1 Wilkes Barre, PA 18702 US', latitude=Decimal('41.2435024'), longitude=Decimal('-75.8428947'))
Row(state='Pennsylvania', location='Willow Grove', address='2618 W Moreland Rd Willow Grove, PA 19090 US', latitude=Decimal('40.143586024512665'), longitude=Decimal('-75.1217490171793'))
Row(state='Pennsylvania', location='Wyncote', address='2401 W Cheltenham Ave Ste 220 Wyncote, PA 19095 US', latitude=Decimal('40.07355'), longitude=Decimal('-75.15491800000001'))
Row(state='Pennsylvania', location='York', address='890 Loucks Rd York, PA 17404 US', latitude=Decimal('39.979825399999996'), longitude=Decimal('-76.75195490000002'))
Row(state='Oklahoma', location='Edmond', address='1569 S Broadway Edmond, OK 73013 US', latitude=Decimal('35.63763055041129'), longitude=Decimal('-97.4843937738248'))
Row(state='Oklahoma', location='Moore', address='705 SW 19th St 200 Moore, OK 73160 US', latitude=Decimal('35.3201917'), longitude=Decimal('-97.499842'))
Row(state='Oklahoma', location='Norman', address='765 Asp Ave Ste 110 Norman, OK 73069 US', latitude=Decimal('35.211756949639394'), longitude=Decimal('-97.4435027708929'))
Row(state='Oklahoma', location='Oklahoma City', address='3315 NW Expressway Ste A Oklahoma City, OK 73112 US', latitude=Decimal('35.5312823'), longitude=Decimal('-97.5757905'))
Row(state='Oklahoma', location='Stillwater', address='415 E Hall Of Fame Ave Stillwater, OK 74075 US', latitude=Decimal('36.126492999999996'), longitude=Decimal('-97.053372'))
Row(state='Oklahoma', location='Tulsa', address='6060 S Yale Ave Tulsa, OK 74135 US', latitude=Decimal('36.07573563994679'), longitude=Decimal('-95.92272491310854'))
Row(state='New York', location='Albany', address='17 New Scotland Ave Ste 112 Albany, NY 12208 US', latitude=Decimal('42.654250700000006'), longitude=Decimal('-73.7730512'))
Row(state='New York', location='Amherst', address='1643 Niagara Falls Blvd Amherst, NY 14228 US', latitude=Decimal('42.999719511319725'), longitude=Decimal('-78.81943605336177'))
Row(state='New York', location='Astoria', address='3173 Steinway St Astoria, NY 11103 US', latitude=Decimal('40.7594259'), longitude=Decimal('-73.918436'))
Row(state='New York', location='Bay Shore', address='1675 Sunrise Hwy Bay Shore, NY 11706 US', latitude=Decimal('40.736432'), longitude=Decimal('-73.24763'))
Row(state='New York', location='Bohemia', address='5181 Sunrise Hwy Bohemia, NY 11716 US', latitude=Decimal('40.76482670000001'), longitude=Decimal('-73.09257170000001'))
Row(state='New York', location='Bronx', address='815 Hutchinson River Pkwy Bronx, NY 10465 US', latitude=Decimal('40.8239054'), longitude=Decimal('-73.83819940000001'))
Row(state='New York', location='Brooklyn', address='774 Broadway Brooklyn, NY 11206 US', latitude=Decimal('40.7000298264766'), longitude=Decimal('-73.94096754550367'))
Row(state='New York', location='Buffalo', address='4405 Milestrip Rd Ste 5 Buffalo, NY 14219 US', latitude=Decimal('42.789382567226774'), longitude=Decimal('-78.81497509353267'))
Row(state='New York', location='Carle Place', address='135 Old Country Rd Carle Place, NY 11514 US', latitude=Decimal('40.74355703669997'), longitude=Decimal('-73.61803873897226'))
Row(state='New York', location='Central Valley', address='498 Red Apple Ct Spc FC-12 Central Valley, NY 10917 US', latitude=Decimal('41.3169256'), longitude=Decimal('-74.1259455'))
Row(state='New York', location='Cheektowaga', address='1717 Walden Ave Cheektowaga, NY 14225 US', latitude=Decimal('42.90753759136164'), longitude=Decimal('-78.77423781043342'))
Row(state='New York', location='Cicero', address='7944 Brewerton Rd Cicero, NY 13039 US', latitude=Decimal('43.15505176177413'), longitude=Decimal('-76.12227558895495'))
Row(state='New York', location='Clifton Park', address='22 Clifton Country Rd Ste 150 Clifton Park, NY 12065 US', latitude=Decimal('42.8601823'), longitude=Decimal('-73.7803062'))
Row(state='New York', location='Commack', address='660 Commack Rd Commack, NY 11725 US', latitude=Decimal('40.80724232048263'), longitude=Decimal('-73.29384585003027'))
Row(state='New York', location='Deer Park', address='1090 The Arches Cir Deer Park, NY 11729 US', latitude=Decimal('40.76463444137426'), longitude=Decimal('-73.30658445368749'))
Row(state='New York', location='Dobbs Ferry', address='12 Lawrence St Dobbs Ferry, NY 10522 US', latitude=Decimal('41.002018968104174'), longitude=Decimal('-73.8574606900662'))
Row(state='New York', location='East Meadow', address='2312 Hempstead Tpke East Meadow, NY 11554 US', latitude=Decimal('40.72452263660088'), longitude=Decimal('-73.55054444347071'))
Row(state='New York', location='East Northport', address='4000 Jericho Tpke East Northport, NY 11731 US', latitude=Decimal('40.839110718880576'), longitude=Decimal('-73.31525126375186'))
Row(state='New York', location='Elmhurst', address='9015 Queens Blvd Ste FC12 Elmhurst, NY 11373 US', latitude=Decimal('40.73464194319473'), longitude=Decimal('-73.86971153512167'))
Row(state='New York', location='Elmont', address='620 Hempstead Tpke Elmont, NY 11003 US', latitude=Decimal('40.70759532438545'), longitude=Decimal('-73.70235478538784'))
Row(state='New York', location='Farmingdale', address='901 Broadhollow Rd Farmingdale, NY 11735 US', latitude=Decimal('40.726012'), longitude=Decimal('-73.4234'))
Row(state='New York', location='Fishkill', address='10 Westage Dr Fishkill, NY 12524 US', latitude=Decimal('41.527889'), longitude=Decimal('-73.893887'))
Row(state='New York', location='Forest Hills', address='7030 Austin St Forest Hills, NY 11375 US', latitude=Decimal('40.7204886'), longitude=Decimal('-73.8459915'))
Row(state='New York', location='Garden City', address='630 Old Country Rd Unit 1047 Garden City, NY 11530 US', latitude=Decimal('40.738202'), longitude=Decimal('-73.613312'))
Row(state='New York', location='Great Neck', address='44 Great Neck Rd Great Neck, NY 11021 US', latitude=Decimal('40.785468440537954'), longitude=Decimal('-73.72738571454715'))
Row(state='New York', location='Hauppauge', address='694 Motor Pkwy Ste 1 Hauppauge, NY 11788 US', latitude=Decimal('40.807171999999994'), longitude=Decimal('-73.23777945767209'))
Row(state='New York', location='Hicksville', address='215 N Broadway Hicksville, NY 11801 US', latitude=Decimal('40.77439972943342'), longitude=Decimal('-73.5276472672506'))
Row(state='New York', location='Howard Beach', address='16010 Crossbay Blvd Howard Beach, NY 11414 US', latitude=Decimal('40.65728692190919'), longitude=Decimal('-73.83981151289748'))
Row(state='New York', location='Huntington Station', address='435 Walt Whitman Rd Huntington Station, NY 11747 US', latitude=Decimal('40.81480820000001'), longitude=Decimal('-73.4109988'))
Row(state='New York', location='Ithaca', address='740 S Meadow St Ste 100 Ithaca, NY 14850 US', latitude=Decimal('42.43014786980975'), longitude=Decimal('-76.50822799657499'))
Row(state='New York', location='Jackson Heights', address='8710 Northern Blvd Jackson Heights, NY 11372 US', latitude=Decimal('40.755942600000004'), longitude=Decimal('-73.88023790000001'))
Row(state='New York', location='Jamaica', address='160-02 Jamaica Avenue Jamaica, NY 11432 US', latitude=Decimal('40.703708500000005'), longitude=Decimal('-73.7989613'))
Row(state='New York', location='Kingston', address='1217 Ulster Ave Kingston, NY 12401 US', latitude=Decimal('41.96648042885312'), longitude=Decimal('-73.99000456159422'))
Row(state='New York', location='Lake Grove', address='2093 Smithaven Plaza Lake Grove, NY 11755 US', latitude=Decimal('40.87006243625729'), longitude=Decimal('-73.1283289659915'))
Row(state='New York', location='Lake Ronkonkoma', address='601 Portion Rd Lake Ronkonkoma, NY 11779 US', latitude=Decimal('40.8322304'), longitude=Decimal('-73.08913609999999'))
Row(state='New York', location='Latham', address='2 Wade Road Latham, NY 12110 US', latitude=Decimal('42.755717'), longitude=Decimal('-73.775954'))
Row(state='New York', location='Lawrence', address='331 Rockaway Tpke Lawrence, NY 11559 US', latitude=Decimal('40.62740131601358'), longitude=Decimal('-73.73754594783304'))
Row(state='New York', location='Levittown', address='3629 Hempstead Tpke Levittown, NY 11756 US', latitude=Decimal('40.72599226724776'), longitude=Decimal('-73.50081554646897'))
Row(state='New York', location='Little Neck', address='25465 Horace Harding Expy Little Neck, NY 11362 US', latitude=Decimal('40.765270926200856'), longitude=Decimal('-73.7253672398291'))
Row(state='New York', location='Liverpool', address='3852 State Route 31 Liverpool, NY 13090 US', latitude=Decimal('43.18380786783495'), longitude=Decimal('-76.24673992462293'))
Row(state='New York', location='Long Island City', address='2616 Jackson Ave Long Island City, NY 11101 US', latitude=Decimal('40.747227491157524'), longitude=Decimal('-73.94164881692888'))
Row(state='New York', location='Merrick', address='1996 Merrick Rd Merrick, NY 11566 US', latitude=Decimal('40.655632711865934'), longitude=Decimal('-73.54969776959132'))
Row(state='New York', location='Middletown', address='444 Rte 211 E Ste 2 Middletown, NY 10940 US', latitude=Decimal('41.45511'), longitude=Decimal('-74.38351999999999'))
Row(state='New York', location='Mineola', address='528 Jericho Tpke Ste A Mineola, NY 11501 US', latitude=Decimal('40.74471293993189'), longitude=Decimal('-73.65613664568349'))
Row(state='New York', location='Mohegan Lake', address='3130 E Main St Ste 100 Mohegan Lake, NY 10547 US', latitude=Decimal('41.3183737'), longitude=Decimal('-73.859149'))
Row(state='New York', location='Mount Kisco', address='195 N Bedford Rd Mount Kisco, NY 10549 US', latitude=Decimal('41.216388'), longitude=Decimal('-73.721859'))
Row(state='New York', location='New Hartford', address='4815 Commercial Dr 200 New Hartford, NY 13413 US', latitude=Decimal('43.0954075'), longitude=Decimal('-75.3057106'))
Row(state='New York', location='New Hyde Park', address='2335 New Hyde Park Rd Ste 2329 New Hyde Park, NY 11040 US', latitude=Decimal('40.7580426'), longitude=Decimal('-73.68925440000001'))
Row(state='New York', location='New York', address='906 3rd Ave New York, NY 10022 US', latitude=Decimal('40.75895732076281'), longitude=Decimal('-73.96879640708481'))
Row(state='New York', location='Niagara Falls', address='1785 Military Rd 300 Niagara Falls, NY 14304 US', latitude=Decimal('43.09690315418109'), longitude=Decimal('-78.97385634043094'))
Row(state='New York', location='Oceanside', address='3161 Long Beach Rd Oceanside, NY 11572 US', latitude=Decimal('40.63451005716519'), longitude=Decimal('-73.63969227024079'))
Row(state='New York', location='Patchogue', address='367 N Service Rd Patchogue, NY 11772 US', latitude=Decimal('40.778729652427785'), longitude=Decimal('-73.03307648320548'))
Row(state='New York', location='Pelham', address='798 Pelham Pkwy Pelham, NY 10803 US', latitude=Decimal('40.893607'), longitude=Decimal('-73.821011'))
Row(state='New York', location='Plattsburgh', address='200 Consumer Square Ste 208 Plattsburgh, NY 12901 US', latitude=Decimal('44.69441607721768'), longitude=Decimal('-73.48679101840789'))
Row(state='New York', location='Port Jefferson Station', address='1064 Route 112 Port Jefferson Station, NY 11776 US', latitude=Decimal('40.9196375'), longitude=Decimal('-73.041781'))
Row(state='New York', location='Queensbury', address='820 State Route 9 Tbd Northway Plaza Queensbury, NY 12804 US', latitude=Decimal('43.33271806506082'), longitude=Decimal('-73.67539969390589'))
Row(state='New York', location='Rego Park', address='6135 Junction Blvd Rego Park, NY 11374 US', latitude=Decimal('40.7332441'), longitude=Decimal('-73.8638964'))
Row(state='New York', location='Rensselaer', address='279 Troy Rd Ste 5 Rensselaer, NY 12144 US', latitude=Decimal('42.6415462947361'), longitude=Decimal('-73.70188803164523'))
Row(state='New York', location='Riverhead', address='1501 Old Country Rd Riverhead, NY 11901 US', latitude=Decimal('40.925559425068506'), longitude=Decimal('-72.69211713032405'))
Row(state='New York', location='Rochester', address='640 Jefferson Rd Rochester, NY 14623 US', latitude=Decimal('43.0875383'), longitude=Decimal('-77.6253022'))
Row(state='New York', location='Rye Brook', address='100 S Ridge St Rye Brook, NY 10573 US', latitude=Decimal('41.00357218075789'), longitude=Decimal('-73.68328068812713'))
Row(state='New York', location='Saratoga Springs', address='3057 Route 50 Ste 5 Saratoga Springs, NY 12866 US', latitude=Decimal('43.10386429442525'), longitude=Decimal('-73.7412460149917'))
Row(state='New York', location='Schenectady', address='441 Balltown Rd Ste 3 Schenectady, NY 12304 US', latitude=Decimal('42.7732494'), longitude=Decimal('-73.8939578'))
Row(state='New York', location='Selden', address='261 Middle Country Rd Selden, NY 11784 US', latitude=Decimal('40.868209'), longitude=Decimal('-73.02474000000001'))
Row(state='New York', location='Staten Island', address='2655 Richmond Ave Ste P05 Staten Island, NY 10314 US', latitude=Decimal('40.581662'), longitude=Decimal('-74.16773'))
Row(state='New York', location='Syosset', address='420 Jericho Tpke Syosset, NY 11791 US', latitude=Decimal('40.809898'), longitude=Decimal('-73.500505'))
Row(state='New York', location='Syracuse', address='3600 W Genesee St Syracuse, NY 13219 US', latitude=Decimal('43.0477861'), longitude=Decimal('-76.2372807'))
Row(state='New York', location='Tonawanda', address='1759 Sheridan Dr Tonawanda, NY 14223 US', latitude=Decimal('42.980157473662395'), longitude=Decimal('-78.86930143039132'))
Row(state='New York', location='Uniondale', address='1166 Hempstead Tpke Uniondale, NY 11553 US', latitude=Decimal('40.717965795182465'), longitude=Decimal('-73.59214381903172'))
Row(state='New York', location='Valley Stream', address='2034 Green Acres Mall Valley Stream, NY 11581 US', latitude=Decimal('40.6607513'), longitude=Decimal('-73.7211685'))
Row(state='New York', location='Vestal', address='4698 Vestal Pkwy E Vestal, NY 13850 US', latitude=Decimal('42.092788239587115'), longitude=Decimal('-75.95278785108815'))
Row(state='New York', location='Victor', address='401 Commerce Dr Victor, NY 14564 US', latitude=Decimal('43.0209515'), longitude=Decimal('-77.4393727'))
Row(state='New York', location='Wantagh', address='1194 Wantagh Ave Wantagh, NY 11793 US', latitude=Decimal('40.69371638102755'), longitude=Decimal('-73.50895481855912'))
Row(state='New York', location='Watertown', address='1290 Arsenal St Ste 7 Watertown, NY 13601 US', latitude=Decimal('43.977241'), longitude=Decimal('-75.94663800000001'))
Row(state='New York', location='Webster', address='927 Holt Rd 500 Webster, NY 14580 US', latitude=Decimal('43.213651'), longitude=Decimal('-77.44913000000001'))
Row(state='New York', location='West Nyack', address='1000 Palisades Center Dr Spc A402 West Nyack, NY 10994 US', latitude=Decimal('41.097919'), longitude=Decimal('-73.957938'))
Row(state='New York', location='White Plains', address='405 Tarrytown Rd White Plains, NY 10607 US', latitude=Decimal('41.04256190732029'), longitude=Decimal('-73.79951513657987'))
Row(state='New York', location='Williamsville', address='8020 Transit Rd Unit 23 Williamsville, NY 14221 US', latitude=Decimal('42.9856499'), longitude=Decimal('-78.6975413'))
Row(state='New York', location='Yonkers', address='5510 Xavier Dr Space 5A10 Yonkers, NY 10704 US', latitude=Decimal('40.92684809781982'), longitude=Decimal('-73.85366430153346'))
Row(state='Ohio', location='Akron', address='825 W Market St Akron, OH 44303 US', latitude=Decimal('41.0970929809026'), longitude=Decimal('-81.54395430983902'))
Row(state='Ohio', location='Alliance', address='1630 W State St Ste A Alliance, OH 44601 US', latitude=Decimal('40.901397827688534'), longitude=Decimal('-81.12899063678799'))
Row(state='Ohio', location='Amelia', address='1227 W Ohio Pike Amelia, OH 45102 US', latitude=Decimal('39.047267953887136'), longitude=Decimal('-84.24681553465575'))
Row(state='Ohio', location='Amherst', address='901 N Leavitt Rd Amherst, OH 44001 US', latitude=Decimal('41.416947'), longitude=Decimal('-82.208402'))
Row(state='Ohio', location='Anderson', address='7630 Beechmont Ave Anderson, OH 45255 US', latitude=Decimal('39.073006'), longitude=Decimal('-84.3462917'))
Row(state='Ohio', location='Ashland', address='1988 E Main St # Us250 Ashland, OH 44805 US', latitude=Decimal('40.860266123842344'), longitude=Decimal('-82.27114900055767'))
Row(state='Ohio', location='Ashtabula', address='2911 N Ridge Rd E Ste A Ashtabula, OH 44004 US', latitude=Decimal('41.8774014'), longitude=Decimal('-80.7580821'))
Row(state='Ohio', location='Athens', address='41 S Court St Athens, OH 45701 US', latitude=Decimal('39.327961458290474'), longitude=Decimal('-82.10158464901167'))
Row(state='Ohio', location='Austintown', address='5553 Mahoning Ave Austintown, OH 44515 US', latitude=Decimal('41.0985901'), longitude=Decimal('-80.76608089999998'))
Row(state='Ohio', location='Avon', address='35925 Detroit Rd Ste 115 Avon, OH 44011 US', latitude=Decimal('41.45873858258883'), longitude=Decimal('-82.01835091519314'))
Row(state='Ohio', location='Barberton', address='446 E Robinson Ave. Suite A Barberton, OH 44203 US', latitude=Decimal('41.009865000000005'), longitude=Decimal('-81.5894578306885'))
Row(state='Ohio', location='Beavercreek', address='4473 Walnut St Beavercreek, OH 45440 US', latitude=Decimal('39.694800457705384'), longitude=Decimal('-84.10336222643423'))
Row(state='Ohio', location='Bellefontaine', address='1551 S Main St Bellefontaine, OH 43311 US', latitude=Decimal('40.33749'), longitude=Decimal('-83.76149740000001'))
Row(state='Ohio', location='Bexley', address='2484 E Main St Bexley, OH 43209 US', latitude=Decimal('39.95735181831246'), longitude=Decimal('-82.93242612522113'))
Row(state='Ohio', location='Blue Ash', address='11257 Reed Hartman Hwy Unit B Blue Ash, OH 45241 US', latitude=Decimal('39.27180495259125'), longitude=Decimal('-84.3762919039847'))
Row(state='Ohio', location='Boardman', address='525 Boardman Poland Rd Boardman, OH 44512 US', latitude=Decimal('41.02380728383718'), longitude=Decimal('-80.6435070657967'))
Row(state='Ohio', location='Bowling Green', address='1558 E Wooster St Bowling Green, OH 43402 US', latitude=Decimal('41.373946999999994'), longitude=Decimal('-83.624638'))
Row(state='Ohio', location='Brecksville', address='4416 Royalton Rd Ste A Brecksville, OH 44141 US', latitude=Decimal('41.3140926'), longitude=Decimal('-81.654662'))
Row(state='Ohio', location='Brooklyn', address='10325 Cascade Xing Brooklyn, OH 44144 US', latitude=Decimal('41.42312137075894'), longitude=Decimal('-81.75936568956661'))
Row(state='Ohio', location='Brunswick', address='3362 Center Rd Ste E20 Brunswick, OH 44212 US', latitude=Decimal('41.23781288089128'), longitude=Decimal('-81.80684978048168'))
Row(state='Ohio', location='Cambridge', address='61690 Southgate Rd Ste 4 Cambridge, OH 43725 US', latitude=Decimal('39.997119633013114'), longitude=Decimal('-81.5753367356285'))
Row(state='Ohio', location='Canal Winchester', address='695 W Waterloo St Canal Winchester, OH 43110 US', latitude=Decimal('39.85484288167192'), longitude=Decimal('-82.82508836387899'))
Row(state='Ohio', location='Canfield', address='4542 Boardman Canfield Rd Canfield, OH 44406 US', latitude=Decimal('41.025349'), longitude=Decimal('-80.735828'))
Row(state='Ohio', location='Canton', address='5097 Dressler Rd NW Canton, OH 44718 US', latitude=Decimal('40.85522098634976'), longitude=Decimal('-81.43291882543053'))
Row(state='Ohio', location='Chillicothe', address='1290 N Bridge St Ste A Chillicothe, OH 45601 US', latitude=Decimal('39.361619333640654'), longitude=Decimal('-82.97699047725223'))
Row(state='Ohio', location='Cincinnati', address='9430C Colerain Ave Cincinnati, OH 45251 US', latitude=Decimal('39.243089887815906'), longitude=Decimal('-84.59408281960413'))
Row(state='Ohio', location='Circleville', address='1469 S Court St Circleville, OH 43113 US', latitude=Decimal('39.581747'), longitude=Decimal('-82.95230699999999'))
Row(state='Ohio', location='Cleveland', address='3471 Steelyard Dr Cleveland, OH 44109 US', latitude=Decimal('41.46009421311707'), longitude=Decimal('-81.69037102270181'))
Row(state='Ohio', location='Columbus', address='771 Bethel Rd Columbus, OH 43214 US', latitude=Decimal('40.062586100000004'), longitude=Decimal('-83.04120859999999'))
Row(state='Ohio', location='Cortland', address='2160 Millennium Blvd Cortland, OH 44410 US', latitude=Decimal('41.277553999999995'), longitude=Decimal('-80.774132'))
Row(state='Ohio', location='Cuyahoga Falls', address='371 Howe Ave Ste C Cuyahoga Falls, OH 44221 US', latitude=Decimal('41.11957551778632'), longitude=Decimal('-81.47943898654239'))
Row(state='Ohio', location='Dayton', address='6759 Miller Ln Dayton, OH 45414 US', latitude=Decimal('39.8455691958192'), longitude=Decimal('-84.19280280760847'))
Row(state='Ohio', location='Delaware', address='1710 Columbus Pike Ste 220 Delaware, OH 43015 US', latitude=Decimal('40.26813077769967'), longitude=Decimal('-83.07123747624127'))
Row(state='Ohio', location='Dublin', address='6776 Perimeter Loop Rd Dublin, OH 43017 US', latitude=Decimal('40.104'), longitude=Decimal('-83.15736600000001'))
Row(state='Ohio', location='Elyria', address='1615 W River Rd N Elyria, OH 44035 US', latitude=Decimal('41.39700330421413'), longitude=Decimal('-82.1065341650297'))
Row(state='Ohio', location='Englewood', address='9208 N Main St Englewood, OH 45415 US', latitude=Decimal('39.85832562187781'), longitude=Decimal('-84.27767376791887'))
Row(state='Ohio', location='Euclid', address='22250 Lake Shore Blvd Euclid, OH 44123 US', latitude=Decimal('41.609881'), longitude=Decimal('-81.52595699999998'))
Row(state='Ohio', location='Fairfield', address='5410 Dixie Hwy Fairfield, OH 45014 US', latitude=Decimal('39.335867500032016'), longitude=Decimal('-84.52681580087585'))
Row(state='Ohio', location='Fairfield Township', address='3335 Princeton Rd Fairfield Township, OH 45011 US', latitude=Decimal('39.3899584'), longitude=Decimal('-84.5043224'))
Row(state='Ohio', location='Fairview Park', address='21029 Center Ridge Rd Fairview Park, OH 44126 US', latitude=Decimal('41.46136194470472'), longitude=Decimal('-81.85297185276123'))
Row(state='Ohio', location='Findlay', address='15067 E US Route 224 Findlay, OH 45840 US', latitude=Decimal('41.05554496550957'), longitude=Decimal('-83.59105625385371'))
Row(state='Ohio', location='Gahanna', address='95 N Hamilton Rd Gahanna, OH 43230 US', latitude=Decimal('40.019649148351775'), longitude=Decimal('-82.86678596288016'))
Row(state='Ohio', location='Garfield Heights', address='9761 Vista Way Garfield Heights, OH 44125 US', latitude=Decimal('41.40948795601889'), longitude=Decimal('-81.6163372902547'))
Row(state='Ohio', location='Grandview Heights', address='1298 W 5th Ave Grandview Heights, OH 43212 US', latitude=Decimal('39.98891989556609'), longitude=Decimal('-83.04120536626976'))
Row(state='Ohio', location='Grove City', address='3019 Meadow Pond Ct Grove City, OH 43123 US', latitude=Decimal('39.8405768'), longitude=Decimal('-83.08621740000001'))
Row(state='Ohio', location='Hamilton', address='1455 Main St Hamilton, OH 45013 US', latitude=Decimal('39.424324'), longitude=Decimal('-84.5954963'))
Row(state='Ohio', location='Harrison', address='589 Ring Rd Harrison, OH 45030 US', latitude=Decimal('39.260545193373694'), longitude=Decimal('-84.79318546990585'))
Row(state='Ohio', location='Heath', address='515 Hebron Rd Heath, OH 43056 US', latitude=Decimal('40.03836011665525'), longitude=Decimal('-82.42993193130019'))
Row(state='Ohio', location='Highland Heights', address='6267 Wilson Mills Rd Unit A Highland Heights, OH 44143 US', latitude=Decimal('41.5393549574904'), longitude=Decimal('-81.4535373309447'))
Row(state='Ohio', location='Hilliard', address='3670 Fishinger Blvd Hilliard, OH 43026 US', latitude=Decimal('40.029613811700656'), longitude=Decimal('-83.11614401608767'))
Row(state='Ohio', location='Holland', address='6658 Airport Hwy Ste C Holland, OH 43528 US', latitude=Decimal('41.61259707812477'), longitude=Decimal('-83.70146681345926'))
Row(state='Ohio', location='Huber Heights', address='7767 Troy Pike Huber Heights, OH 45424 US', latitude=Decimal('39.865614102279224'), longitude=Decimal('-84.13858918077085'))
Row(state='Ohio', location='Hudson', address='5 Atterbury Blvd Ste 1 Hudson, OH 44236 US', latitude=Decimal('41.24025405980127'), longitude=Decimal('-81.44536298725166'))
Row(state='Ohio', location='Independence', address='6901 Rockside Rd Ste 13 Independence, OH 44131 US', latitude=Decimal('41.39636507571153'), longitude=Decimal('-81.6421109036216'))
Row(state='Ohio', location='Jeffersonville', address='12478 Old U.S. 35 Jeffersonville, OH 43128 US', latitude=Decimal('39.618259537999066'), longitude=Decimal('-83.60394555828384'))
Row(state='Ohio', location='Kent', address='429 E Main St Kent, OH 44240 US', latitude=Decimal('41.15414337848663'), longitude=Decimal('-81.35177517699191'))
Row(state='Ohio', location='Kettering', address='4329 Far Hills Ave Kettering, OH 45429 US', latitude=Decimal('39.68475611127288'), longitude=Decimal('-84.16820119845806'))
Row(state='Ohio', location='Lakewood', address='14881 Detroit Ave Lakewood, OH 44107 US', latitude=Decimal('41.48476913556063'), longitude=Decimal('-81.80115792295692'))
Row(state='Ohio', location='Lancaster', address='1608 N Memorial Dr Lancaster, OH 43130 US', latitude=Decimal('39.73145840987301'), longitude=Decimal('-82.61392341840269'))
Row(state='Ohio', location='Liberty Township', address='6876 Cincinnati Dayton Rd Ste 101 Liberty Township, OH 45044 US', latitude=Decimal('39.37778986604589'), longitude=Decimal('-84.37763785977631'))
Row(state='Ohio', location='Lima', address='3292 Elida Rd Ste 100 Lima, OH 45805 US', latitude=Decimal('40.77075864547788'), longitude=Decimal('-84.16445974388313'))
Row(state='Ohio', location='Loveland', address='10567 Loveland Madeira Rd Loveland, OH 45140 US', latitude=Decimal('39.251331872016344'), longitude=Decimal('-84.2972668355993'))
Row(state='Ohio', location='Lyndhurst', address='24651 Cedar Rd Lyndhurst, OH 44124 US', latitude=Decimal('41.50374758618268'), longitude=Decimal('-81.50227433729424'))
Row(state='Ohio', location='Mansfield', address='2470 Possum Run Rd Mansfield, OH 44903 US', latitude=Decimal('40.6914204179409'), longitude=Decimal('-82.51252737440416'))
Row(state='Ohio', location='Marion', address='135 Edgefield Blvd Marion, OH 43302 US', latitude=Decimal('40.58084382997238'), longitude=Decimal('-83.08307799998653'))
Row(state='Ohio', location='Marysville', address='1089 Delaware Ave Marysville, OH 43040 US', latitude=Decimal('40.23671974654282'), longitude=Decimal('-83.3501015435686'))
Row(state='Ohio', location='Mason', address='9540 S Mason Montgomery Rd Ste A Mason, OH 45040 US', latitude=Decimal('39.2995649'), longitude=Decimal('-84.3143522'))
Row(state='Ohio', location='Massillon', address='13 Tommy Henrich Dr NW 13 Massillon, OH 44647 US', latitude=Decimal('40.7957913852589'), longitude=Decimal('-81.52733152637201'))
Row(state='Ohio', location='Maumee', address='1385 Conant St Ste A Maumee, OH 43537 US', latitude=Decimal('41.57881479415149'), longitude=Decimal('-83.66411325869103'))
Row(state='Ohio', location='Mayfield Heights', address='6717 Eastgate Dr Mayfield Heights, OH 44124 US', latitude=Decimal('41.52513889701008'), longitude=Decimal('-81.43710508369873'))
Row(state='Ohio', location='Medina', address='899 N Court St Medina, OH 44256 US', latitude=Decimal('41.15054366239336'), longitude=Decimal('-81.86383435950717'))
Row(state='Ohio', location='Mentor', address='9188 Mentor Ave Mentor, OH 44060 US', latitude=Decimal('41.67660686196451'), longitude=Decimal('-81.31000445948985'))
Row(state='Ohio', location='Miamisburg', address='10671 Innovation Dr Miamisburg, OH 45342 US', latitude=Decimal('39.59701210000001'), longitude=Decimal('-84.2314135'))
Row(state='Ohio', location='Middleburg Heights', address='17999 Bagley Rd Middleburg Heights, OH 44130 US', latitude=Decimal('41.371498356323634'), longitude=Decimal('-81.82645710289307'))
Row(state='Ohio', location='Milford', address='5697 Romar Dr Milford, OH 45150 US', latitude=Decimal('39.18739627660469'), longitude=Decimal('-84.2600505820987'))
Row(state='Ohio', location='Monroe', address='175 Senate Dr Monroe, OH 45050 US', latitude=Decimal('39.440073'), longitude=Decimal('-84.330662'))
Row(state='Ohio', location='Mount Vernon', address='857 Coshocton Ave Mount Vernon, OH 43050 US', latitude=Decimal('40.39967717045936'), longitude=Decimal('-82.45933414131525'))
Row(state='Ohio', location='New Albany', address='5375 New Albany Rd W New Albany, OH 43054 US', latitude=Decimal('40.093563669970756'), longitude=Decimal('-82.82354619230091'))
Row(state='Ohio', location='New Philadelphia', address='135 Bluebell Dr SW New Philadelphia, OH 44663 US', latitude=Decimal('40.492279100000005'), longitude=Decimal('-81.4720985'))
Row(state='Ohio', location='Newark', address='1292 N 21st St Newark, OH 43055 US', latitude=Decimal('40.08348414782301'), longitude=Decimal('-82.42720695613423'))
Row(state='Ohio', location='North Canton', address='1472 N Main St North Canton, OH 44720 US', latitude=Decimal('40.89243975109532'), longitude=Decimal('-81.40486747269709'))
Row(state='Ohio', location='North Olmsted', address='26420 Great Northern Shop Ctr North Olmsted, OH 44070 US', latitude=Decimal('41.41819243947349'), longitude=Decimal('-81.91635322432239'))
Row(state='Ohio', location='North Ridgeville', address='32223 Lorain Rd North Ridgeville, OH 44039 US', latitude=Decimal('41.386266'), longitude=Decimal('-81.974659'))
Row(state='Ohio', location='Northfield', address='8195 Golden Link Blvd Northfield, OH 44067 US', latitude=Decimal('41.31252397067924'), longitude=Decimal('-81.52305134110452'))
Row(state='Ohio', location='Norwood', address='4402 Montgomery Rd Norwood, OH 45212 US', latitude=Decimal('39.15716810000001'), longitude=Decimal('-84.4576647'))
Row(state='Ohio', location='Obetz', address='5051 Groveport Rd Obetz, OH 43207 US', latitude=Decimal('39.86805094134369'), longitude=Decimal('-82.93656331779096'))
Row(state='Ohio', location='Ontario', address='764 N Lexington Springmill Rd Ontario, OH 44906 US', latitude=Decimal('40.77318864075714'), longitude=Decimal('-82.58981116820256'))
Row(state='Ohio', location='Oregon', address='2924 Navarre Ave Oregon, OH 43616 US', latitude=Decimal('41.636402775720136'), longitude=Decimal('-83.47841837447645'))
Row(state='Ohio', location='Oxford', address='1 W High St Ste 101 Oxford, OH 45056 US', latitude=Decimal('39.51031133214092'), longitude=Decimal('-84.7426747182658'))
Row(state='Ohio', location='Painesville', address='7689 Crile Rd Painesville, OH 44077 US', latitude=Decimal('41.662261271507454'), longitude=Decimal('-81.24063035609947'))
Row(state='Ohio', location='Parma', address='7683 W Ridgewood Dr Parma, OH 44129 US', latitude=Decimal('41.384120755530525'), longitude=Decimal('-81.7383160684027'))
Row(state='Ohio', location='Perrysburg', address='10711 Fremont Pike Perrysburg, OH 43551 US', latitude=Decimal('41.54849501470168'), longitude=Decimal('-83.60068010185239'))
Row(state='Ohio', location='Pickerington', address='1291 Hill Rd N Pickerington, OH 43147 US', latitude=Decimal('39.91560892285183'), longitude=Decimal('-82.78091606939176'))
Row(state='Ohio', location='Powell', address='9733 Sawmill Pkwy Powell, OH 43065 US', latitude=Decimal('40.156547543389905'), longitude=Decimal('-83.09048033458453'))
Row(state='Ohio', location='Ravenna', address='787 E Main St Ravenna, OH 44266 US', latitude=Decimal('41.1575806'), longitude=Decimal('-81.22827149999999'))
Row(state='Ohio', location='Reynoldsburg', address='7611 Farmsbury Dr Reynoldsburg, OH 43068 US', latitude=Decimal('39.9406908106128'), longitude=Decimal('-82.7910557828207'))
Row(state='Ohio', location='Saint Clairsville', address='68041 Mall Ring Rd Saint Clairsville, OH 43950 US', latitude=Decimal('40.07177963424679'), longitude=Decimal('-80.86669969949503'))
Row(state='Ohio', location='Sandusky', address='4318 Milan Rd Unit 2 Sandusky, OH 44870 US', latitude=Decimal('41.416338200000006'), longitude=Decimal('-82.6715406'))
Row(state='Ohio', location='Sharonville', address='11974 Lebanon Rd Ste 356 Sharonville, OH 45241 US', latitude=Decimal('39.29261884854756'), longitude=Decimal('-84.39264368148038'))
Row(state='Ohio', location='Sheffield Village', address='5252 Detroit Rd Sheffield Village, OH 44035 US', latitude=Decimal('41.424505419888'), longitude=Decimal('-82.07805649006484'))
Row(state='Ohio', location='Sidney', address='1975 Michigan St Sidney, OH 45365 US', latitude=Decimal('40.2871388'), longitude=Decimal('-84.184474'))
Row(state='Ohio', location='Solon', address='33599 Aurora Rd Solon, OH 44139 US', latitude=Decimal('41.38534240693887'), longitude=Decimal('-81.4405102828207'))
Row(state='Ohio', location='South Euclid', address='13937 Cedar Rd South Euclid, OH 44118 US', latitude=Decimal('41.501724356871186'), longitude=Decimal('-81.53837531916348'))
Row(state='Ohio', location='Springboro', address='5 Greenwood Ln Springboro, OH 45066 US', latitude=Decimal('39.5632598395686'), longitude=Decimal('-84.2652679926424'))
Row(state='Ohio', location='Springdale', address='11700 Princeton Pike Unit 3C Springdale, OH 45246 US', latitude=Decimal('39.28974432241263'), longitude=Decimal('-84.46611472669555'))
Row(state='Ohio', location='Springfield', address='1930 N Bechtle Ave Ste B Springfield, OH 45504 US', latitude=Decimal('39.95118459282675'), longitude=Decimal('-83.82995524908871'))
Row(state='Ohio', location='Stow', address='4338 Kent Rd Unit 400 Stow, OH 44224 US', latitude=Decimal('41.156094473226425'), longitude=Decimal('-81.40582005570626'))
Row(state='Ohio', location='Streetsboro', address='9754 State Route 14 Streetsboro, OH 44241 US', latitude=Decimal('41.25095567800796'), longitude=Decimal('-81.3634359484621'))
Row(state='Ohio', location='Strongsville', address='500 Southpark Ctr Strongsville, OH 44136 US', latitude=Decimal('41.30964763940014'), longitude=Decimal('-81.81971997275059'))
Row(state='Ohio', location='Tiffin', address='596 W Market St Unit C Tiffin, OH 44883 US', latitude=Decimal('41.11258695811356'), longitude=Decimal('-83.20168679017831'))
Row(state='Ohio', location='Toledo', address='7229 W Central Ave Toledo, OH 43617 US', latitude=Decimal('41.67301153131502'), longitude=Decimal('-83.71637901683219'))
Row(state='Ohio', location='Troy', address='1934 W Main St Troy, OH 45373 US', latitude=Decimal('40.056451897251954'), longitude=Decimal('-84.24326293630344'))
Row(state='Ohio', location='Twinsburg', address='2640 Creekside Dr Twinsburg, OH 44087 US', latitude=Decimal('41.30805610032686'), longitude=Decimal('-81.43899367236378'))
Row(state='Ohio', location='Uniontown', address='1840 Franks Pkwy Uniontown, OH 44685 US', latitude=Decimal('40.9588459'), longitude=Decimal('-81.4639707'))
Row(state='Ohio', location='Wadsworth', address='990 High St Ste C Wadsworth, OH 44281 US', latitude=Decimal('41.04965444211114'), longitude=Decimal('-81.7296688693412'))
Row(state='Ohio', location='Warren', address='1922 Niles Cortland Rd SE Warren, OH 44484 US', latitude=Decimal('41.2175495'), longitude=Decimal('-80.7411911'))
Row(state='Ohio', location='Warrensville Heights', address='4015 Richmond Rd Warrensville Heights, OH 44122 US', latitude=Decimal('41.448181537229296'), longitude=Decimal('-81.49584952316127'))
Row(state='Ohio', location='Washington Township', address='1051 Miamisburg Centerville Rd Washington Township, OH 45459 US', latitude=Decimal('39.628838633163795'), longitude=Decimal('-84.18922023444135'))
Row(state='Ohio', location='West Chester', address='9324 Union Centre Blvd West Chester, OH 45069 US', latitude=Decimal('39.32505994717118'), longitude=Decimal('-84.4302594159559'))
Row(state='Ohio', location='Westerville', address='641 S State St Westerville, OH 43081 US', latitude=Decimal('40.108917969961595'), longitude=Decimal('-82.92577601962604'))
Row(state='Ohio', location='Westlake', address='29990 Detroit Rd Westlake, OH 44145 US', latitude=Decimal('41.4645691'), longitude=Decimal('-81.9518695'))
Row(state='Ohio', location='Whitehall', address='3822 E Broad St Unit 41A Whitehall, OH 43213 US', latitude=Decimal('39.974388039968474'), longitude=Decimal('-82.89877784210034'))
Row(state='Ohio', location='Willoughby', address='36200 Euclid Ave Ste 12 Willoughby, OH 44094 US', latitude=Decimal('41.626788191384954'), longitude=Decimal('-81.42961771562409'))
Row(state='Ohio', location='Woodmere', address='28077 Chagrin Blvd Woodmere, OH 44122 US', latitude=Decimal('41.46274633'), longitude=Decimal('-81.4806345'))
Row(state='Ohio', location='Wooster', address='4124 Burbank Rd Wooster, OH 44691 US', latitude=Decimal('40.849648335327565'), longitude=Decimal('-81.94712358159735'))
Row(state='Ohio', location='Xenia', address='1620 W Park Square Xenia, OH 45385 US', latitude=Decimal('39.68966548000371'), longitude=Decimal('-83.96204042607481'))
Row(state='Ohio', location='Youngstown', address='320 Wick Ave Youngstown, OH 44503 US', latitude=Decimal('41.1053131869228'), longitude=Decimal('-80.64532405187238'))
Row(state='Ohio', location='Zanesville', address='3581 Maple Ave Zanesville, OH 43701 US', latitude=Decimal('39.98919008604389'), longitude=Decimal('-82.02362955398462'))
Row(state='New Jersey', location='Basking Ridge', address='25 Mountainview Blvd Basking Ridge, NJ 07920 US', latitude=Decimal('40.64419307055649'), longitude=Decimal('-74.57722822947215'))
Row(state='New Jersey', location='Bernardsville', address='80 Morristown Rd Bernardsville, NJ 07924 US', latitude=Decimal('40.720400500000004'), longitude=Decimal('-74.5636559'))
Row(state='New Jersey', location='Bloomfield', address='240 Bloomfield Ave Bloomfield, NJ 07003 US', latitude=Decimal('40.78182251759875'), longitude=Decimal('-74.19175627741595'))
Row(state='New Jersey', location='Bound Brook', address='318 Chimney Rock Rd Bound Brook, NJ 08805 US', latitude=Decimal('40.576617999999996'), longitude=Decimal('-74.55912'))
Row(state='New Jersey', location='Brick', address='74 Brick Plz Brick, NJ 08723 US', latitude=Decimal('40.058928519264676'), longitude=Decimal('-74.14229528774887'))
Row(state='New Jersey', location='Bridgewater', address='640 Commons Way Ste 4280 Bridgewater, NJ 08807 US', latitude=Decimal('40.5829233'), longitude=Decimal('-74.6144108'))
Row(state='New Jersey', location='Cherry Hill', address='818 Haddonfield Rd Cherry Hill, NJ 08002 US', latitude=Decimal('39.92744046583082'), longitude=Decimal('-75.03187636410952'))
Row(state='New Jersey', location='Cinnaminson', address='115 Route 130 S Cinnaminson, NJ 08077 US', latitude=Decimal('39.9890181'), longitude=Decimal('-75.0097218'))
Row(state='New Jersey', location='Clark', address='1255 Raritan Rd Unit 410 Clark, NJ 07066 US', latitude=Decimal('40.63275055617118'), longitude=Decimal('-74.30508784968549'))
Row(state='New Jersey', location='Clifton', address='380 State Rt 3 Clifton, NJ 07014 US', latitude=Decimal('40.83005667'), longitude=Decimal('-74.1379235'))
Row(state='New Jersey', location='Closter', address='83 Vervalen St Closter, NJ 07624 US', latitude=Decimal('40.970002194698985'), longitude=Decimal('-73.95509991413883'))
Row(state='New Jersey', location='Deptford', address='2000 Clements Bridge Road Suite 119A Deptford, NJ 08096 US', latitude=Decimal('39.84181082279356'), longitude=Decimal('-75.0924170116142'))
Row(state='New Jersey', location='East Brunswick', address='609 State Route 18 East Brunswick, NJ 08816 US', latitude=Decimal('40.435261237823546'), longitude=Decimal('-74.3903575319639'))
Row(state='New Jersey', location='East Hanover', address='368 State Route 10 East Hanover, NJ 07936 US', latitude=Decimal('40.8034679'), longitude=Decimal('-74.3627386'))
Row(state='New Jersey', location='East Rutherford', address='40 State Rt 17 East Rutherford, NJ 07073 US', latitude=Decimal('40.83113323097657'), longitude=Decimal('-74.08911338735766'))
Row(state='New Jersey', location='Eatontown', address='186 Hwy 35 Eatontown, NJ 07724 US', latitude=Decimal('40.289910707518025'), longitude=Decimal('-74.0525743204862'))
Row(state='New Jersey', location='Edgewater', address='14 The Promenade Edgewater, NJ 07020 US', latitude=Decimal('40.806999299999994'), longitude=Decimal('-73.9901349'))
Row(state='New Jersey', location='Edison', address='55 Parsonage Rd Spc FS16A Edison, NJ 08837 US', latitude=Decimal('40.547948'), longitude=Decimal('-74.335887'))
Row(state='New Jersey', location='Englewood', address='10 Nathaniel Pl Englewood, NJ 07631 US', latitude=Decimal('40.89534784749867'), longitude=Decimal('-73.97619533374689'))
Row(state='New Jersey', location='Fort Lee', address='134 Linwood Plaza Fort Lee, NJ 07024 US', latitude=Decimal('40.861233'), longitude=Decimal('-73.970523'))
Row(state='New Jersey', location='Freehold', address='323 W Main St Freehold, NJ 07728 US', latitude=Decimal('40.24433084288029'), longitude=Decimal('-74.29943478774891'))
Row(state='New Jersey', location='Hackensack', address='450 Hackensack Ave Hackensack, NJ 07601 US', latitude=Decimal('40.909591299999995'), longitude=Decimal('-74.03122890000002'))
Row(state='New Jersey', location='Hillsborough', address='649 US Highway 206 Unit 1A Hillsborough, NJ 08844 US', latitude=Decimal('40.49904912603992'), longitude=Decimal('-74.64523441305329'))
Row(state='New Jersey', location='Hoboken', address='229 Washington Street Hoboken, NJ 07030 US', latitude=Decimal('40.739599465749336'), longitude=Decimal('-74.02998078583823'))
Row(state='New Jersey', location='Holmdel', address='2131 State Route 35 Ste 102 Holmdel, NJ 07733 US', latitude=Decimal('40.415241255713404'), longitude=Decimal('-74.15871732347284'))
Row(state='New Jersey', location='Howell', address='4733 US Highway 9 200 Howell, NJ 07731 US', latitude=Decimal('40.13435686997922'), longitude=Decimal('-74.2229776346573'))
Row(state='New Jersey', location='Jersey City', address='525 Washington Blvd Ste G Jersey City, NJ 07310 US', latitude=Decimal('40.726818776027756'), longitude=Decimal('-74.03526733739483'))
Row(state='New Jersey', location='Kearny', address='190 Passaic Ave 6 Kearny, NJ 07032 US', latitude=Decimal('40.759721'), longitude=Decimal('-74.15983'))
Row(state='New Jersey', location='Lawrenceville', address='3371 US Highway 1 Unit 250 Lawrenceville, NJ 08648 US', latitude=Decimal('40.2983742590059'), longitude=Decimal('-74.68467227116395'))
Row(state='New Jersey', location='Lodi', address='170 Essex Street Ste 3 Lodi, NJ 07644 US', latitude=Decimal('40.89111360203947'), longitude=Decimal('-74.07195719405536'))
Row(state='New Jersey', location='Madison', address='6 Main St Madison, NJ 07940 US', latitude=Decimal('40.76011679999999'), longitude=Decimal('-74.4167983'))
Row(state='New Jersey', location='Manahawkin', address='385 Martin Truex Jr Blvd Manahawkin, NJ 08050 US', latitude=Decimal('39.704553999999995'), longitude=Decimal('-74.27542199999998'))
Row(state='New Jersey', location='Marlton', address='882 Route 73 N Ste A Marlton, NJ 08053 US', latitude=Decimal('39.90623710000001'), longitude=Decimal('-74.9363638'))
Row(state='New Jersey', location='Mays Landing', address='2220 Wrangleboro Rd Mays Landing, NJ 08330 US', latitude=Decimal('39.45118212555821'), longitude=Decimal('-74.6377224938658'))
Row(state='New Jersey', location='Metuchen', address='349 Lake Ave Metuchen, NJ 08840 US', latitude=Decimal('40.54085387381667'), longitude=Decimal('-74.36603543238567'))
Row(state='New Jersey', location='Montvale', address='18 Farm View Montvale, NJ 07645 US', latitude=Decimal('41.051032'), longitude=Decimal('-74.06184272883606'))
Row(state='New Jersey', location='Moorestown', address='1600 Nixon Dr Moorestown, NJ 08057 US', latitude=Decimal('39.9463794'), longitude=Decimal('-74.95958370000001'))
Row(state='New Jersey', location='Morris Plains', address='1711 State Route 10 Morris Plains, NJ 07950 US', latitude=Decimal('40.845014566161005'), longitude=Decimal('-74.46741316074258'))
Row(state='New Jersey', location='Mount Laurel', address='10 Centerton Rd Mount Laurel, NJ 08054 US', latitude=Decimal('39.96992593019781'), longitude=Decimal('-74.91403547287803'))
Row(state='New Jersey', location='New Brunswick', address='387 George St New Brunswick, NJ 08901 US', latitude=Decimal('40.49608012866478'), longitude=Decimal('-74.44389511532687'))
Row(state='New Jersey', location='New Providence', address='1260 Springfield Ave Ste 2 New Providence, NJ 07974 US', latitude=Decimal('40.706435'), longitude=Decimal('-74.40451'))
Row(state='New Jersey', location='Newark', address='222 Market St Newark, NJ 07102 US', latitude=Decimal('40.734760143457926'), longitude=Decimal('-74.17034735706045'))
Row(state='New Jersey', location='North Brunswick', address='524 Shoppes Blvd North Brunswick, NJ 08902 US', latitude=Decimal('40.46145446109451'), longitude=Decimal('-74.45714599614713'))
Row(state='New Jersey', location='Paramus', address='81 E State Rt 4 Ste 101 Paramus, NJ 07652 US', latitude=Decimal('40.91928992368564'), longitude=Decimal('-74.06484148954303'))
Row(state='New Jersey', location='Parsippany', address='1131 US Highway 46 Parsippany, NJ 07054 US', latitude=Decimal('40.86189198879906'), longitude=Decimal('-74.38771204191426'))
Row(state='New Jersey', location='Princeton', address='3522 US Highway 1 Princeton, NJ 08540 US', latitude=Decimal('40.3109783'), longitude=Decimal('-74.66135849999999'))
Row(state='New Jersey', location='Ramsey', address='1255 State Rt 17 Unit 3 Ramsey, NJ 07446 US', latitude=Decimal('41.07066761139971'), longitude=Decimal('-74.13941381102774'))
Row(state='New Jersey', location='Red Bank', address='20 Water St Red Bank, NJ 07701 US', latitude=Decimal('40.35073914410585'), longitude=Decimal('-74.06996564123243'))
Row(state='New Jersey', location='Rockaway', address='301 Mt Hope Ave Ste 2067A Rockaway, NJ 07866 US', latitude=Decimal('40.907218'), longitude=Decimal('-74.554014'))
Row(state='New Jersey', location='Sea Girt', address='2150 Route 35 Space E-7 Sea Girt, NJ 08750 US', latitude=Decimal('40.1379976381188'), longitude=Decimal('-74.06170585554503'))
Row(state='New Jersey', location='Secaucus', address='700 Plaza Dr Secaucus, NJ 07094 US', latitude=Decimal('40.78756310779809'), longitude=Decimal('-74.0457996006117'))
Row(state='New Jersey', location='Sicklerville', address='629 Cross Keys Rd Ste C Sicklerville, NJ 08081 US', latitude=Decimal('39.73461550186378'), longitude=Decimal('-75.00785990153793'))
Row(state='New Jersey', location='South Plainfield', address='6850 Hadley Road South Plainfield, NJ 07080 US', latitude=Decimal('40.55451313806272'), longitude=Decimal('-74.43135648638497'))
Row(state='New Jersey', location='Springfield', address='697 Morris Tpke Ste 2 Springfield, NJ 07081 US', latitude=Decimal('40.718627317094025'), longitude=Decimal('-74.32950032270185'))
Row(state='New Jersey', location='Teterboro', address='9 Teterboro Landing Dr Teterboro, NJ 07608 US', latitude=Decimal('40.860622799999994'), longitude=Decimal('-74.06191179999998'))
Row(state='New Jersey', location='Toms River', address='1258 Hooper Ave Toms River, NJ 08753 US', latitude=Decimal('39.98432404458657'), longitude=Decimal('-74.18058696073058'))
Row(state='New Jersey', location='Union', address='1101 Morris Ave Union, NJ 07083 US', latitude=Decimal('40.68581167'), longitude=Decimal('-74.23265167'))
Row(state='New Jersey', location='Voorhees', address='700 Haddonfield Berlin Rd Ste 40C Voorhees, NJ 08043 US', latitude=Decimal('39.85315085014117'), longitude=Decimal('-74.9825397199579'))
Row(state='New Jersey', location='Watchung', address='1620 US Highway 22 Watchung, NJ 07069 US', latitude=Decimal('40.6429201'), longitude=Decimal('-74.4126248'))
Row(state='New Jersey', location='Wayne', address='70 Willowbrook Blvd Wayne, NJ 07470 US', latitude=Decimal('40.888716195272906'), longitude=Decimal('-74.25201344601533'))
Row(state='New Jersey', location='West Caldwell', address='749 Bloomfield Ave Ste 4 West Caldwell, NJ 07006 US', latitude=Decimal('40.850227683571525'), longitude=Decimal('-74.29402782301635'))
Row(state='New Jersey', location='West Orange', address='235 Prospect Ave West Orange, NJ 07052 US', latitude=Decimal('40.80523669999999'), longitude=Decimal('-74.2481487'))
Row(state='New Jersey', location='Westfield', address='117 E Broad St Westfield, NJ 07090 US', latitude=Decimal('40.65102192055685'), longitude=Decimal('-74.34931696007793'))
Row(state='New Jersey', location='Woodbridge', address='318 US Highway 9 N Woodbridge, NJ 07095 US', latitude=Decimal('40.53607398124903'), longitude=Decimal('-74.29641438804462'))
Row(state='Nevada', location='Carson City', address='1457 S Carson St Ste 102 Carson City, NV 89701 US', latitude=Decimal('39.15402599882324'), longitude=Decimal('-119.7666478316948'))
Row(state='Nevada', location='Henderson', address='246 E Lake Mead Pkwy Henderson, NV 89015 US', latitude=Decimal('36.041261799999994'), longitude=Decimal('-114.97842450000002'))
Row(state='Nevada', location='Las Vegas', address='9240 W Sahara Ave Ste 150 Las Vegas, NV 89117 US', latitude=Decimal('36.144785278753034'), longitude=Decimal('-115.29739288011149'))
Row(state='Nevada', location='North Las Vegas', address='2546 E Craig Rd Ste 100 North Las Vegas, NV 89030 US', latitude=Decimal('36.2402359'), longitude=Decimal('-115.11622309999998'))
Row(state='Nevada', location='Reno', address='6395 S McCarran Blvd Unit A Reno, NV 89509 US', latitude=Decimal('39.477468607659794'), longitude=Decimal('-119.79316186352526'))
Row(state='Nevada', location='Sparks', address='1560 E Lincoln Way Ste 120 Sparks, NV 89434 US', latitude=Decimal('39.533988702619155'), longitude=Decimal('-119.71814222879658'))
Row(state='Wyoming', location='Cheyenne', address='1508 Dell Range Blvd Cheyenne, WY 82009 US', latitude=Decimal('41.160718013799844'), longitude=Decimal('-104.80569895096563'))
Row(state='Nebraska', location='Bellevue', address='10403 S 15th St Ste 106 Bellevue, NE 68123 US', latitude=Decimal('41.15789501566658'), longitude=Decimal('-95.93476613380459'))
Row(state='Nebraska', location='Lincoln', address='6005 O St Ste A Lincoln, NE 68510 US', latitude=Decimal('40.81312457947535'), longitude=Decimal('-96.64012233289516'))
Row(state='Nebraska', location='Omaha', address='3605 N 147th St Ste 111 Omaha, NE 68116 US', latitude=Decimal('41.291726457763936'), longitude=Decimal('-96.14288789719996'))
Row(state='Nebraska', location='Papillion', address='9820 S 71st Plz Ste 117 Papillion, NE 68133 US', latitude=Decimal('41.1624055'), longitude=Decimal('-96.0233141'))
Row(state='West Virginia', location='Barboursville', address='18 Mall Rd Barboursville, WV 25504 US', latitude=Decimal('38.419643'), longitude=Decimal('-82.261247'))
Row(state='West Virginia', location='Charleston', address='2811 Mountaineer Blvd Charleston, WV 25309 US', latitude=Decimal('38.318543'), longitude=Decimal('-81.71876999999999'))
Row(state='West Virginia', location='Huntington', address='2151 5th Ave Huntington, WV 25703 US', latitude=Decimal('38.42336452896161'), longitude=Decimal('-82.41935122704331'))
Row(state='West Virginia', location='Martinsburg', address='937 Foxcroft Ave Martinsburg, WV 25401 US', latitude=Decimal('39.446002794901084'), longitude=Decimal('-77.98783448473255'))
Row(state='West Virginia', location='Morgantown', address='461 High St 103 Morgantown, WV 26505 US', latitude=Decimal('39.628094'), longitude=Decimal('-79.957707'))
Row(state='North Dakota', location='Fargo', address='1680 45th St S Fargo, ND 58103 US', latitude=Decimal('46.855337126253865'), longitude=Decimal('-96.86141579138432'))
Row(state='Kansas', location='Derby', address='1700 N Rock Rd Ste 300 Derby, KS 67037 US', latitude=Decimal('37.564432000000004'), longitude=Decimal('-97.243499'))
Row(state='Kansas', location='Kansas City', address='1813 Village West Pkwy Ste Q101 Kansas City, KS 66111 US', latitude=Decimal('39.126453999999995'), longitude=Decimal('-94.823311'))
Row(state='Kansas', location='Lawrence', address='911 Massachusetts St Ste A Lawrence, KS 66044 US', latitude=Decimal('38.96701842184128'), longitude=Decimal('-95.23631557868805'))
Row(state='Kansas', location='Leawood', address='5065 W 119th St Leawood, KS 66209 US', latitude=Decimal('38.9125715657598'), longitude=Decimal('-94.64321666434479'))
Row(state='Kansas', location='Lenexa', address='16101 W 87th St Pkwy Lenexa, KS 66219 US', latitude=Decimal('38.970486132968226'), longitude=Decimal('-94.7727207139737'))
Row(state='Kansas', location='Manhattan', address='606 N Manhattan Ave Manhattan, KS 66502 US', latitude=Decimal('39.18508014557121'), longitude=Decimal('-96.57609178725164'))
Row(state='Kansas', location='Mission', address='6864 Johnson Dr Mission, KS 66202 US', latitude=Decimal('39.023358878021796'), longitude=Decimal('-94.66488381345927'))
Row(state='Kansas', location='Olathe', address='20080 W 153rd St Olathe, KS 66062 US', latitude=Decimal('38.851181434878676'), longitude=Decimal('-94.81751099999997'))
Row(state='Kansas', location='Overland Park', address='9900 College Blvd Overland Park, KS 66210 US', latitude=Decimal('38.92795536341275'), longitude=Decimal('-94.69798653282066'))
Row(state='Kansas', location='Prairie Village', address='6920 Mission Rd Ste C Prairie Village, KS 66208 US', latitude=Decimal('39.003578115637545'), longitude=Decimal('-94.63002840001735'))
Row(state='Kansas', location='Salina', address='2375 S 9th St Ste C Salina, KS 67401 US', latitude=Decimal('38.7985124'), longitude=Decimal('-97.61221450000001'))
Row(state='Kansas', location='Shawnee', address='22235 W 66th St Shawnee, KS 66226 US', latitude=Decimal('39.008165724173544'), longitude=Decimal('-94.84431229323671'))
Row(state='Kansas', location='Topeka', address='2040 SW Wanamaker Rd Ste 103 Topeka, KS 66604 US', latitude=Decimal('39.02951915534389'), longitude=Decimal('-95.76117973804605'))
Row(state='Kansas', location='Wichita', address='7130 W Maple St Ste 100 Wichita, KS 67209 US', latitude=Decimal('37.68024307543954'), longitude=Decimal('-97.42445738667284'))
Row(state='South Carolina', location='Anderson', address='3556 Clemson Blvd Suite 300 Anderson, SC 29621 US', latitude=Decimal('34.55238545010325'), longitude=Decimal('-82.67812234532033'))
Row(state='South Carolina', location='Bluffton', address='1250 Fording Island Rd Ste A Bluffton, SC 29910 US', latitude=Decimal('32.2471481609093'), longitude=Decimal('-80.83250363686629'))
Row(state='South Carolina', location='Charleston', address='374 King St Charleston, SC 29401 US', latitude=Decimal('32.785614158947844'), longitude=Decimal('-79.93600473160916'))
Row(state='South Carolina', location='Clemson', address='393 College Ave Ste 201 Clemson, SC 29631 US', latitude=Decimal('34.68456674968882'), longitude=Decimal('-82.83736704707337'))
Row(state='South Carolina', location='Columbia', address='619 Gervais St Columbia, SC 29201 US', latitude=Decimal('33.99895231234734'), longitude=Decimal('-81.0428677251486'))
Row(state='South Carolina', location='Florence', address='2617 David H McLeod Blvd Florence, SC 29501 US', latitude=Decimal('34.1918158'), longitude=Decimal('-79.8331336'))
Row(state='South Carolina', location='Greenville', address='640 Haywood Rd Greenville, SC 29607 US', latitude=Decimal('34.848590990398'), longitude=Decimal('-82.33826921288015'))
Row(state='South Carolina', location='Mt Pleasant', address='1509 N Highway 17 Mt Pleasant, SC 29464 US', latitude=Decimal('32.817089'), longitude=Decimal('-79.845077'))
Row(state='South Carolina', location='Myrtle Beach', address='1229 N Retail Ct Myrtle Beach, SC 29577 US', latitude=Decimal('33.704979200000004'), longitude=Decimal('-78.9207932'))
Row(state='South Carolina', location='North Augusta', address='362 E Martintown Rd North Augusta, SC 29841 US', latitude=Decimal('33.497437458531635'), longitude=Decimal('-81.96084949555774'))
Row(state='South Carolina', location='North Charleston', address='7398 Rivers Ave Suite 102 North Charleston, SC 29406 US', latitude=Decimal('32.936885087282675'), longitude=Decimal('-80.03890802104685'))
Row(state='South Carolina', location='North Myrtle Beach', address='1502 Highway 17 N Unit 1 North Myrtle Beach, SC 29582 US', latitude=Decimal('33.8420169'), longitude=Decimal('-78.6609744'))
Row(state='South Carolina', location='Spartanburg', address='1490 Wo Ezell Blvd Suite A Spartanburg, SC 29301 US', latitude=Decimal('34.9377433501808'), longitude=Decimal('-81.98452933967639'))
Row(state='South Carolina', location='Summerville', address='1209 N Main St Ste D Summerville, SC 29483 US', latitude=Decimal('33.03471227944432'), longitude=Decimal('-80.1583972121698'))
Row(state='North Carolina', location='Apex', address='1081 Pine Plaza Dr Apex, NC 27523 US', latitude=Decimal('35.746359999999996'), longitude=Decimal('-78.829546'))
Row(state='North Carolina', location='Asheville', address='946 Patton Ave Ste 30 Asheville, NC 28806 US', latitude=Decimal('35.587011'), longitude=Decimal('-82.5875551'))
Row(state='North Carolina', location='Boone', address='1787 Blowing Rock Rd Ste A Boone, NC 28607 US', latitude=Decimal('36.19926847615114'), longitude=Decimal('-81.65796805914715'))
Row(state='North Carolina', location='Burlington', address='649 Huffman Mill Rd Burlington, NC 27215 US', latitude=Decimal('36.0735942'), longitude=Decimal('-79.4923027'))
Row(state='North Carolina', location='Cary', address='204 Crossroads Blvd Ste 212 Cary, NC 27518 US', latitude=Decimal('35.760478486087656'), longitude=Decimal('-78.7409962825235'))
Row(state='North Carolina', location='Chapel Hill', address='301 W Franklin St Chapel Hill, NC 27516 US', latitude=Decimal('35.91137932606221'), longitude=Decimal('-79.0595824036875'))
Row(state='North Carolina', location='Charlotte', address='9821 Northlake Centre Pkwy Charlotte, NC 28216 US', latitude=Decimal('35.348797990817395'), longitude=Decimal('-80.85775520246409'))
Row(state='North Carolina', location='Concord', address='8509 Concord Mills Blvd Concord, NC 28027 US', latitude=Decimal('35.372166'), longitude=Decimal('-80.722589'))
Row(state='North Carolina', location='Durham', address='6910 Fayetteville Rd Suite 187 Durham, NC 27713 US', latitude=Decimal('35.9049326'), longitude=Decimal('-78.94245839999998'))
Row(state='North Carolina', location='Fayetteville', address='4715 Ramsey St Fayetteville, NC 28311 US', latitude=Decimal('35.125971'), longitude=Decimal('-78.879958'))
Row(state='North Carolina', location='Fuquay Varina', address='1385 N Main St Ste 120 Fuquay Varina, NC 27526 US', latitude=Decimal('35.5927126023314'), longitude=Decimal('-78.77433026410347'))
Row(state='North Carolina', location='Garner', address='68 Eagle Wing Way Garner, NC 27529 US', latitude=Decimal('35.697306666170675'), longitude=Decimal('-78.58499433431768'))
Row(state='North Carolina', location='Gastonia', address='2501 E Franklin Blvd Gastonia, NC 28056 US', latitude=Decimal('35.26016448996326'), longitude=Decimal('-81.13311335276127'))
Row(state='North Carolina', location='Goldsboro', address='501 N Berkeley Blvd Ste A Goldsboro, NC 27534 US', latitude=Decimal('35.37482270241832'), longitude=Decimal('-77.94559256004374'))
Row(state='North Carolina', location='Greensboro', address='5402 Sapp Rd Greensboro, NC 27409 US', latitude=Decimal('36.055783252625105'), longitude=Decimal('-79.90414601595593'))
Row(state='North Carolina', location='Greenville', address='610 Greenville Blvd SE Greenville, NC 27858 US', latitude=Decimal('35.58431380050536'), longitude=Decimal('-77.37091632514858'))
Row(state='North Carolina', location='Hickory', address='1770 US Highway 70 SE Hickory, NC 28602 US', latitude=Decimal('35.70735210850262'), longitude=Decimal('-81.3082488738753'))
Row(state='North Carolina', location='High Point', address='4008 Brian Jordan Pl A101 High Point, NC 27265 US', latitude=Decimal('36.032630140693406'), longitude=Decimal('-79.95840003037392'))
Row(state='North Carolina', location='Huntersville', address='8830 Lindholm Dr Ste 120 Huntersville, NC 28078 US', latitude=Decimal('35.44364311557214'), longitude=Decimal('-80.87894993897227'))
Row(state='North Carolina', location='Jacksonville', address='1345 Western Blvd Ste 140 Jacksonville, NC 28546 US', latitude=Decimal('34.78646178390098'), longitude=Decimal('-77.4026611671793'))
Row(state='North Carolina', location='Kernersville', address='1020 S Main St Ste G Kernersville, NC 27284 US', latitude=Decimal('36.1083498'), longitude=Decimal('-80.097596'))
Row(state='North Carolina', location='Matthews', address='1909 Matthews Township Pkwy Ste H Matthews, NC 28105 US', latitude=Decimal('35.1246756872963'), longitude=Decimal('-80.70819173773157'))
Row(state='North Carolina', location='Monroe', address='2335 W Roosevelt Blvd Ste A Monroe, NC 28110 US', latitude=Decimal('35.0092258117846'), longitude=Decimal('-80.56364478897649'))
Row(state='North Carolina', location='Mooresville', address='643 River Hwy Mooresville, NC 28117 US', latitude=Decimal('35.59541586043249'), longitude=Decimal('-80.87568099241446'))
Row(state='North Carolina', location='Morrisville', address='1516 Village Market Pl Morrisville, NC 27560 US', latitude=Decimal('35.806992936536005'), longitude=Decimal('-78.81516061648905'))
Row(state='North Carolina', location='New Bern', address='2999 Dr Martin Luther King Jr Blvd New Bern, NC 28562 US', latitude=Decimal('35.10292349511642'), longitude=Decimal('-77.08543288586179'))
Row(state='North Carolina', location='Pineville', address='11025 Carolina Pl Pkwy Ste FC-12 Pineville, NC 28134 US', latitude=Decimal('35.08232181140975'), longitude=Decimal('-80.87727849850535'))
Row(state='North Carolina', location='Raleigh', address='9504 Strickland Rd Raleigh, NC 27615 US', latitude=Decimal('35.90190158973859'), longitude=Decimal('-78.65489657729813'))
Row(state='North Carolina', location='Salisbury', address='1527 E Innes Street Salisbury, NC 28144 US', latitude=Decimal('35.652376486711304'), longitude=Decimal('-80.45673105893019'))
Row(state='North Carolina', location='Smithfield', address='120 S Equity Dr Ste A Smithfield, NC 27577 US', latitude=Decimal('35.50617259096997'), longitude=Decimal('-78.32165194677617'))
Row(state='North Carolina', location='Wake Forest', address='11700 Retail Dr Wake Forest, NC 27587 US', latitude=Decimal('35.9661297'), longitude=Decimal('-78.5439532'))
Row(state='North Carolina', location='Wilmington', address='941 International Dr Ste 1 Wilmington, NC 28405 US', latitude=Decimal('34.2426083'), longitude=Decimal('-77.8283732'))
Row(state='North Carolina', location='Winston Salem', address='128 Hanes Mall Cir Ste 100 Winston Salem, NC 27103 US', latitude=Decimal('36.06929409527393'), longitude=Decimal('-80.29812767424454'))
Row(state='North Carolina', location='Winterville', address='4100 Humber Rd Ste 108 Winterville, NC 28590 US', latitude=Decimal('35.551466299999994'), longitude=Decimal('-77.4051276'))
Row(state='Georgia', location='Albany', address='2630 Dawson Rd 1 Albany, GA 31707 US', latitude=Decimal('31.6170158'), longitude=Decimal('-84.221878'))
Row(state='Georgia', location='Alpharetta', address='5250 Windward Pkwy Ste 120 Alpharetta, GA 30004 US', latitude=Decimal('34.090822677223464'), longitude=Decimal('-84.27493030209013'))
Row(state='Georgia', location='Athens', address='165 Alps Rd Athens, GA 30606 US', latitude=Decimal('33.947373403855124'), longitude=Decimal('-83.40882517790988'))
Row(state='Georgia', location='Atlanta', address='718 Ponce De Leon Ave NE Atlanta, GA 30306 US', latitude=Decimal('33.77392179723447'), longitude=Decimal('-84.36356532716769'))
Row(state='Georgia', location='Augusta', address='229 Robert C Daniel Jr Pkwy # A Augusta, GA 30909 US', latitude=Decimal('33.490445799999996'), longitude=Decimal('-82.08004090000001'))
Row(state='Georgia', location='Austell', address='3999 Austell Rd Austell, GA 30106 US', latitude=Decimal('33.855531'), longitude=Decimal('-84.5993014'))
Row(state='Georgia', location='Buford', address='3350 Buford Dr Ste B260 Buford, GA 30519 US', latitude=Decimal('34.073119071673304'), longitude=Decimal('-83.98484861656759'))
Row(state='Georgia', location='Canton', address='2026 Cumming Hwy Ste 110 Canton, GA 30115 US', latitude=Decimal('34.23665147381761'), longitude=Decimal('-84.45634731900049'))
Row(state='Georgia', location='Chamblee', address='5001 Peachtree Blvd Ste 1010 Chamblee, GA 30341 US', latitude=Decimal('33.884559493961305'), longitude=Decimal('-84.31577334085944'))
Row(state='Georgia', location='Columbus', address='5295 Whittlesey Blvd Ste 600 Columbus, GA 31909 US', latitude=Decimal('32.54176918447279'), longitude=Decimal('-84.9503442909704'))
Row(state='Georgia', location='Conyers', address='1467 Highway 138 SE Conyers, GA 30013 US', latitude=Decimal('33.651075932180035'), longitude=Decimal('-84.00914985491085'))
Row(state='Georgia', location='Cumming', address='905 Market Place Blvd Ste C Cumming, GA 30041 US', latitude=Decimal('34.181216100794025'), longitude=Decimal('-84.1330584184027'))
Row(state='Georgia', location='Dawsonville', address='285 Marketplace Blvd. Dawsonville, GA 30534 US', latitude=Decimal('34.348637200000006'), longitude=Decimal('-84.05000749999999'))
Row(state='Georgia', location='Decatur', address='198 W Ponce De Leon Ave Decatur, GA 30030 US', latitude=Decimal('33.775257'), longitude=Decimal('-84.298713'))
Row(state='Georgia', location='Douglasville', address='9380 The Landing Dr Douglasville, GA 30135 US', latitude=Decimal('33.7278339'), longitude=Decimal('-84.73766850000001'))
Row(state='Georgia', location='Duluth', address='2190 Peachtree Industrial Blvd 110 Duluth, GA 30097 US', latitude=Decimal('34.0214559846354'), longitude=Decimal('-84.12027296747647'))
Row(state='Georgia', location='East Point', address='3330 Camp Creek Pkwy East Point, GA 30344 US', latitude=Decimal('33.6573346'), longitude=Decimal('-84.4992978'))
Row(state='Georgia', location='Fayetteville', address='1135 Highway 85 N Ste E Fayetteville, GA 30214 US', latitude=Decimal('33.4722595'), longitude=Decimal('-84.4428863'))
Row(state='Georgia', location='Gainesville', address='1134 Dawsonville Hwy Ste 100 Gainesville, GA 30501 US', latitude=Decimal('34.303282200000005'), longitude=Decimal('-83.85868599999999'))
Row(state='Georgia', location='Hinesville', address='806 W Oglethorpe Hwy Unit A Hinesville, GA 31313 US', latitude=Decimal('31.82191319999999'), longitude=Decimal('-81.5990953'))
Row(state='Georgia', location='Kennesaw', address='954 Ernest W Barrett Pkwy NW Ste 120 Kennesaw, GA 30144 US', latitude=Decimal('34.00384741990944'), longitude=Decimal('-84.57924998900114'))
Row(state='Georgia', location='Lawrenceville', address='860 Duluth Hwy Ste 320 Lawrenceville, GA 30043 US', latitude=Decimal('33.967096999999995'), longitude=Decimal('-84.022464'))
Row(state='Georgia', location='Loganville', address='4112 Atlanta Hwy Ste 300 Loganville, GA 30052 US', latitude=Decimal('33.84487462056122'), longitude=Decimal('-83.90851404189516'))
Row(state='Georgia', location='Macon', address='120 Tom Hill Sr Blvd Ste 100 Macon, GA 31210 US', latitude=Decimal('32.90075978429131'), longitude=Decimal('-83.68851949479199'))
Row(state='Georgia', location='Marietta', address='3606 Sandy Plains Rd Marietta, GA 30066 US', latitude=Decimal('34.037258'), longitude=Decimal('-84.46113199999999'))
Row(state='Georgia', location='McDonough', address='1442 Highway 20 W McDonough, GA 30253 US', latitude=Decimal('33.42289817058108'), longitude=Decimal('-84.18719384938834'))
Row(state='Georgia', location='Morrow', address='2011 Mount Zion Rd Morrow, GA 30260 US', latitude=Decimal('33.562695515038'), longitude=Decimal('-84.32466225520801'))
Row(state='Georgia', location='Newnan', address='1200 Highway 34 E B Newnan, GA 30265 US', latitude=Decimal('33.39842'), longitude=Decimal('-84.74004000000001'))
Row(state='Georgia', location='Norcross', address='5485 Jimmy Carter Blvd. Suite 300 Norcross, GA 30093 US', latitude=Decimal('33.9082515'), longitude=Decimal('-84.2057184'))
Row(state='Georgia', location='Peachtree City', address='101 City Cir Peachtree City, GA 30269 US', latitude=Decimal('33.3965503'), longitude=Decimal('-84.59188809999999'))
Row(state='Georgia', location='Pooler', address='6 Mill Creek Cir Ste A Pooler, GA 31322 US', latitude=Decimal('32.14018919111177'), longitude=Decimal('-81.24343997702158'))
Row(state='Georgia', location='Roswell', address='10800 Alpharetta Hwy Ste 288 Roswell, GA 30076 US', latitude=Decimal('34.0439237'), longitude=Decimal('-84.3422444'))
Row(state='Georgia', location='Sandy Springs', address='5920 Roswell Rd Ste B101 Sandy Springs, GA 30328 US', latitude=Decimal('33.91633'), longitude=Decimal('-84.37962900000001'))
Row(state='Georgia', location='Savannah', address='318 Mall Blvd Ste 600C Savannah, GA 31406 US', latitude=Decimal('32.00529780199559'), longitude=Decimal('-81.1139359964438'))
Row(state='Georgia', location='Snellville', address='1650 Scenic Highway S Snellville, GA 30078 US', latitude=Decimal('33.88240818771869'), longitude=Decimal('-84.01050865398463'))
Row(state='Georgia', location='Suwanee', address='3186 Lawrenceville Suwanee Rd Suwanee, GA 30024 US', latitude=Decimal('34.034380234679965'), longitude=Decimal('-84.05223583374692'))
Row(state='Georgia', location='Tucker', address='4347 Hugh Howell Rd Tucker, GA 30084 US', latitude=Decimal('33.851604751411664'), longitude=Decimal('-84.21001497362806'))
Row(state='Georgia', location='Warner Robins', address='133 Margie Dr Ste 500 Warner Robins, GA 31093 US', latitude=Decimal('32.6185625'), longitude=Decimal('-83.69034429999999'))
Row(state='Alabama', location='Auburn', address='346 W Magnolia Ave Auburn, AL 36832 US', latitude=Decimal('32.606812966051244'), longitude=Decimal('-85.48732833164195'))
Row(state='Alabama', location='Birmingham', address='4719 Highway 280 Birmingham, AL 35242 US', latitude=Decimal('33.42258214624579'), longitude=Decimal('-86.6982794650297'))
Row(state='Alabama', location='Cullman', address='1821 Cherokee Ave SW Cullman, AL 35055 US', latitude=Decimal('34.15413376734492'), longitude=Decimal('-86.84122007667406'))
Row(state='Alabama', location='Hoover', address='1759 Montgomery Hwy Hoover, AL 35244 US', latitude=Decimal('33.378958029568594'), longitude=Decimal('-86.80380210088629'))
Row(state='Alabama', location='Huntsville', address='5900 University Dr NW Ste D2 Huntsville, AL 35806 US', latitude=Decimal('34.742319254429496'), longitude=Decimal('-86.6657204641674'))
Row(state='Alabama', location='Mobile', address='7765 Airport Blvd D100 Mobile, AL 36608 US', latitude=Decimal('30.68273057569605'), longitude=Decimal('-88.22499815689844'))
Row(state='Alabama', location='Montgomery', address='2560 Berryhill Rd Ste C Montgomery, AL 36117 US', latitude=Decimal('32.35917687650774'), longitude=Decimal('-86.16225285227608'))
Row(state='Alabama', location='Opelika', address='2125 Interstate Dr Opelika, AL 36801 US', latitude=Decimal('32.616808752194316'), longitude=Decimal('-85.40447876717928'))
Row(state='Alabama', location='Prattville', address='2566 Cobbs Ford Rd Prattville, AL 36066 US', latitude=Decimal('32.459169'), longitude=Decimal('-86.391343'))
Row(state='Alabama', location='Tuscaloosa', address='1800 McFarland Blvd E Ste 608 Tuscaloosa, AL 35404 US', latitude=Decimal('33.19675499999999'), longitude=Decimal('-87.52704204662706'))
Row(state='Alabama', location='Vestavia Hills', address='1031 Montgomery Hwy Ste 111 Vestavia Hills, AL 35216 US', latitude=Decimal('33.439069161673594'), longitude=Decimal('-86.78828456747647'))
Row(state='Arizona', location='Avondale', address='9925 W McDowell Rd Ste 101 Avondale, AZ 85392 US', latitude=Decimal('33.46437705872272'), longitude=Decimal('-112.27319356506382'))
Row(state='Arizona', location='Buckeye', address='944 S Watson Rd Buckeye, AZ 85326 US', latitude=Decimal('33.4383084'), longitude=Decimal('-112.55830390000001'))
Row(state='Arizona', location='Casa Grande', address='1775 E Florence Blvd Ste 1 Casa Grande, AZ 85122 US', latitude=Decimal('32.8791300574308'), longitude=Decimal('-111.71123532758007'))
Row(state='Arizona', location='Cave Creek', address='5355 E Carefree Hwy Bldg E Cave Creek, AZ 85331 US', latitude=Decimal('33.7991455'), longitude=Decimal('-111.96608379999999'))
Row(state='Arizona', location='Chandler', address='890 N 54th St Ste 5 Chandler, AZ 85226 US', latitude=Decimal('33.31742039082265'), longitude=Decimal('-111.96882761900793'))
Row(state='Arizona', location='Flagstaff', address='1111 S Plaza Way Flagstaff, AZ 86001 US', latitude=Decimal('35.189859999999996'), longitude=Decimal('-111.661643'))
Row(state='Arizona', location='Gilbert', address='3757 S Gilbert Rd Ste 110 Gilbert, AZ 85297 US', latitude=Decimal('33.281812'), longitude=Decimal('-111.78891580000001'))
Row(state='Arizona', location='Glendale', address='9410 W Hanna Ln Ste A101 Glendale, AZ 85305 US', latitude=Decimal('33.535085678021716'), longitude=Decimal('-112.26195146901438'))
Row(state='Arizona', location='Goodyear', address='1560 N Litchfield Rd Goodyear, AZ 85395 US', latitude=Decimal('33.463806634713315'), longitude=Decimal('-112.35866282944778'))
Row(state='Arizona', location='Green Valley', address='18725 S Nogales Hwy Green Valley, AZ 85614 US', latitude=Decimal('31.909951'), longitude=Decimal('-110.9799733'))
Row(state='Arizona', location='Kingman', address='3455 N Stockton Hill Rd Ste C Kingman, AZ 86409 US', latitude=Decimal('35.2241165'), longitude=Decimal('-114.0370087'))
Row(state='Arizona', location='Lake Havasu City', address='55 Lake Havasu Ave S Ste M Lake Havasu City, AZ 86403 US', latitude=Decimal('34.47479664860446'), longitude=Decimal('-114.34551069653816'))
Row(state='Arizona', location='Laveen', address='5130 W Baseline Rd Ste 105 Laveen, AZ 85339 US', latitude=Decimal('33.37927'), longitude=Decimal('-112.16899939999999'))
Row(state='Arizona', location='Marana', address='5940 W Arizona Pavillions Dr Ste 110 Marana, AZ 85743 US', latitude=Decimal('32.354884717102536'), longitude=Decimal('-111.09165199846213'))
Row(state='Arizona', location='Maricopa', address='21423 N John Wayne Pkwy Ste 105 Maricopa, AZ 85139 US', latitude=Decimal('33.0735015'), longitude=Decimal('-112.0428503'))
Row(state='Arizona', location='Mesa', address='4984 S Power Rd Ste 107 Mesa, AZ 85212 US', latitude=Decimal('33.32550687825606'), longitude=Decimal('-111.68759818374691'))
Row(state='Arizona', location='Oro Valley', address='10604 N Oracle Rd Ste 101 Oro Valley, AZ 85737 US', latitude=Decimal('32.3987337'), longitude=Decimal('-110.95573970000001'))
Row(state='Arizona', location='Peoria', address='9940 W Happy Valley Pkwy Ste 1040 Peoria, AZ 85383 US', latitude=Decimal('33.711424900000004'), longitude=Decimal('-112.27308059999999'))
Row(state='Arizona', location='Phoenix', address='7427 W Thomas Rd Suite 5 Phoenix, AZ 85033 US', latitude=Decimal('33.479676480750506'), longitude=Decimal('-112.21983422329616'))
Row(state='Arizona', location='Prescott', address='351 N Montezuma St Ste B Prescott, AZ 86301 US', latitude=Decimal('34.54663162772478'), longitude=Decimal('-112.46924604662706'))
Row(state='Arizona', location='Prescott Valley', address='5791 E State Route 69 Ste 100 Prescott Valley, AZ 86314 US', latitude=Decimal('34.578154999999995'), longitude=Decimal('-112.362518'))
Row(state='Arizona', location='Queen Creek', address='21172 S Ellsworth Loop Rd Ste 114 Queen Creek, AZ 85142 US', latitude=Decimal('33.256185336370194'), longitude=Decimal('-111.63888845969365'))
Row(state='Arizona', location='Scottsdale', address='9301 E Shea Blvd Ste 102 Scottsdale, AZ 85260 US', latitude=Decimal('33.58081392662861'), longitude=Decimal('-111.8819009164954'))
Row(state='Arizona', location='Sedona', address='361 Forest Rd Ste B Sedona, AZ 86336 US', latitude=Decimal('34.8683633460064'), longitude=Decimal('-111.76199563343236'))
Row(state='Arizona', location='Sierra Vista', address='480 N Highway 90 Byp Ste A6 Sierra Vista, AZ 85635 US', latitude=Decimal('31.559864738843068'), longitude=Decimal('-110.2579385717096'))
Row(state='Arizona', location='Surprise', address='13869 W Bell Rd Ste 107 Surprise, AZ 85374 US', latitude=Decimal('33.63829071307527'), longitude=Decimal('-112.35909253559929'))
Row(state='Arizona', location='Tempe', address='815 E Baseline Rd Ste 118 Tempe, AZ 85283 US', latitude=Decimal('33.37791758045822'), longitude=Decimal('-111.92908496080338'))
Row(state='Arizona', location='Tucson', address='9484 E 22nd St Ste 130 Tucson, AZ 85710 US', latitude=Decimal('32.20596149006868'), longitude=Decimal('-110.79014354983956'))
Row(state='Arizona', location='Yuma', address='3080 S 4th Avenue Suite A Yuma, AZ 85364 US', latitude=Decimal('32.699878140781735'), longitude=Decimal('-114.60100324176365'))
Row(state='Virginia', location='Alexandria', address='6770 Richmond Hwy Alexandria, VA 22306 US', latitude=Decimal('38.77062540769472'), longitude=Decimal('-77.08223283711988'))
Row(state='Virginia', location='Arlington', address='4520 Lee Hwy Arlington, VA 22207 US', latitude=Decimal('38.898357478221705'), longitude=Decimal('-77.11875103497026'))
Row(state='Virginia', location='Ashburn', address='43660 Yukon Dr Ashburn, VA 20147 US', latitude=Decimal('39.01075754698244'), longitude=Decimal('-77.49098802331355'))
Row(state='Virginia', location='Blacksburg', address='868 Prices Fork Rd Blacksburg, VA 24060 US', latitude=Decimal('37.2318604'), longitude=Decimal('-80.43133370000001'))
Row(state='Virginia', location='Bristow', address='10303 Bristow Center Dr Bristow, VA 20136 US', latitude=Decimal('38.732853399999996'), longitude=Decimal('-77.5475767'))
Row(state='Virginia', location='Burke', address='5747 Burke Centre Pkwy Burke, VA 22015 US', latitude=Decimal('38.7996923'), longitude=Decimal('-77.32009529999999'))
Row(state='Virginia', location='Centreville', address='6317 Multiplex Dr Ste A Centreville, VA 20121 US', latitude=Decimal('38.828165180122696'), longitude=Decimal('-77.43816004968552'))
Row(state='Virginia', location='Chantilly', address='14416 Chantilly Crossing Ln Chantilly, VA 20151 US', latitude=Decimal('38.89754944347497'), longitude=Decimal('-77.4434719429396'))
Row(state='Virginia', location='Charlottesville', address='953 Emmet St N Charlottesville, VA 22903 US', latitude=Decimal('38.049163080800646'), longitude=Decimal('-78.503676312518'))
Row(state='Virginia', location='Chesapeake', address='836 Eden Way N Chesapeake, VA 23320 US', latitude=Decimal('36.774929031377155'), longitude=Decimal('-76.23203127116392'))
Row(state='Virginia', location='Chester', address='2423 W Hundred Rd Chester, VA 23831 US', latitude=Decimal('37.35440547013639'), longitude=Decimal('-77.41087433246527'))
Row(state='Virginia', location='Chesterfield', address='9873 Iron Bridge Rd Chesterfield, VA 23832 US', latitude=Decimal('37.37670870000001'), longitude=Decimal('-77.511084'))
Row(state='Virginia', location='Colonial Heights', address='1901 Southpark Blvd Colonial Heights, VA 23834 US', latitude=Decimal('37.254629'), longitude=Decimal('-77.3882035'))
Row(state='Virginia', location='Culpeper', address='15335 Creativity Dr Culpeper, VA 22701 US', latitude=Decimal('38.48517906636661'), longitude=Decimal('-77.96727142161045'))
Row(state='Virginia', location='Danville', address='450 Mall Dr Ste 130 Danville, VA 24540 US', latitude=Decimal('36.594503153477724'), longitude=Decimal('-79.42416070304108'))
Row(state='Virginia', location='Dulles', address='22000 Dulles Retail Plz 156 Dulles, VA 20166 US', latitude=Decimal('39.006242'), longitude=Decimal('-77.437158'))
Row(state='Virginia', location='Fairfax', address='9506 Main St No 22B Fairfax, VA 22031 US', latitude=Decimal('38.842982'), longitude=Decimal('-77.2721522'))
Row(state='Virginia', location='Falls Church', address='8191 Strawberry Ln Falls Church, VA 22042 US', latitude=Decimal('38.87211'), longitude=Decimal('-77.228124'))
Row(state='Virginia', location='Fredericksburg', address='5420 Southpoint Plaza Way Fredericksburg, VA 22407 US', latitude=Decimal('38.23177702030394'), longitude=Decimal('-77.50234737729818'))
Row(state='Virginia', location='Gainesville', address='5025 Wellington Rd Gainesville, VA 20155 US', latitude=Decimal('38.791360276895816'), longitude=Decimal('-77.6070282530049'))
Row(state='Virginia', location='Glen Allen', address='5300 Wyndham Forest Dr Glen Allen, VA 23059 US', latitude=Decimal('37.682641'), longitude=Decimal('-77.587767'))
Row(state='Virginia', location='Hampton', address='3510 Von Schilling Dr Hampton, VA 23666 US', latitude=Decimal('37.0435632'), longitude=Decimal('-76.39313800000001'))
Row(state='Virginia', location='Harrisonburg', address='1615 Reservoir St Ste 101 Harrisonburg, VA 22801 US', latitude=Decimal('38.43193916285675'), longitude=Decimal('-78.85506455157258'))
Row(state='Virginia', location='Herndon', address='13354 Franklin Farm Rd Herndon, VA 20171 US', latitude=Decimal('38.907894695567386'), longitude=Decimal('-77.40875420078737'))
Row(state='Virginia', location='Leesburg', address='1001 Edwards Ferry Rd NE Leesburg, VA 20176 US', latitude=Decimal('39.113182695629774'), longitude=Decimal('-77.53693910888802'))
Row(state='Virginia', location='Lorton', address='9447 Lorton Market St Lorton, VA 22079 US', latitude=Decimal('38.70166010585885'), longitude=Decimal('-77.22061937299902'))
Row(state='Virginia', location='Lynchburg', address='4010 Wards Rd Suite A Lynchburg, VA 24502 US', latitude=Decimal('37.34521556959009'), longitude=Decimal('-79.18886798984856'))
Row(state='Virginia', location='Manassas', address='9511 Liberia Ave Manassas, VA 20110 US', latitude=Decimal('38.74918745918577'), longitude=Decimal('-77.44888590368748'))
Row(state='Virginia', location='McLean', address='7923 L Tysons Corner Center McLean, VA 22102 US', latitude=Decimal('38.91753189999999'), longitude=Decimal('-77.22069920000001'))
Row(state='Virginia', location='Mechanicsville', address='7314 Bell Creek Rd Mechanicsville, VA 23111 US', latitude=Decimal('37.604157652266395'), longitude=Decimal('-77.35326953632541'))
Row(state='Virginia', location='Midlothian', address='13300 Rittenhouse Dr Midlothian, VA 23112 US', latitude=Decimal('37.415543658106756'), longitude=Decimal('-77.64118396502971'))
Row(state='Virginia', location='Newport News', address='12386 Warwick Blvd Ste A Newport News, VA 23606 US', latitude=Decimal('37.06718861263767'), longitude=Decimal('-76.491524693202'))
Row(state='Virginia', location='Norfolk', address='4712 Hampton Blvd Norfolk, VA 23508 US', latitude=Decimal('36.886696975282604'), longitude=Decimal('-76.30217672546696'))
Row(state='Virginia', location='North Chesterfield', address='7106 Midlothian Tpke Ste A North Chesterfield, VA 23225 US', latitude=Decimal('37.50136453704509'), longitude=Decimal('-77.5283728936207'))
Row(state='Virginia', location='Oakton', address='2946 Chain Bridge Rd Ste I Oakton, VA 22124 US', latitude=Decimal('38.881287138756534'), longitude=Decimal('-77.30176563471376'))
Row(state='Virginia', location='Purcellville', address='1200 Wolf Rock Dr 130 Purcellville, VA 20132 US', latitude=Decimal('39.13617727370391'), longitude=Decimal('-77.69132032822438'))
Row(state='Virginia', location='Reston', address='12152 Sunset Hills Rd Reston, VA 20190 US', latitude=Decimal('38.954881235796506'), longitude=Decimal('-77.36619755887813'))
Row(state='Virginia', location='Richmond', address='8955 Staples Mill Rd Richmond, VA 23228 US', latitude=Decimal('37.63779712511851'), longitude=Decimal('-77.51171212116674'))
Row(state='Virginia', location='Roanoke', address='4753 Valley View Blvd NW Roanoke, VA 24012 US', latitude=Decimal('37.3009657372299'), longitude=Decimal('-79.95707769411803'))
Row(state='Virginia', location='Rosslyn', address='1735 N Lynn St Lbby 15 Rosslyn, VA 22209 US', latitude=Decimal('38.8953274'), longitude=Decimal('-77.0705265'))
Row(state='Virginia', location='Springfield', address='8066 Rolling Rd # 9 Springfield, VA 22153 US', latitude=Decimal('38.740231'), longitude=Decimal('-77.2129534'))
Row(state='Virginia', location='Stafford', address='100 Prosperity Ln Ste 101 Stafford, VA 22556 US', latitude=Decimal('38.4693324'), longitude=Decimal('-77.4120653'))
Row(state='Virginia', location='Sterling', address='47010 Community Plz Ste 100 Sterling, VA 20164 US', latitude=Decimal('39.015561100000006'), longitude=Decimal('-77.37505990000001'))
Row(state='Virginia', location='Suffolk', address='6216 College Dr Ste 101 Suffolk, VA 23435 US', latitude=Decimal('36.88105344495477'), longitude=Decimal('-76.42441766745289'))
Row(state='Virginia', location='Vienna', address='8461 Leesburg Pike Ste A Vienna, VA 22182 US', latitude=Decimal('38.92489542275501'), longitude=Decimal('-77.23988395567187'))
Row(state='Virginia', location='Virginia Beach', address='3380 Princess Anne Rd 115 Virginia Beach, VA 23456 US', latitude=Decimal('36.775670729374454'), longitude=Decimal('-76.08842929505442'))
Row(state='Virginia', location='Warrenton', address='251 W Lee Hwy Ste 243 Warrenton, VA 20186 US', latitude=Decimal('38.7290711'), longitude=Decimal('-77.7994609'))
Row(state='Virginia', location='West Springfield', address='6230 Rolling Rd West Springfield, VA 22152 US', latitude=Decimal('38.7809565'), longitude=Decimal('-77.2350216'))
Row(state='Virginia', location='Williamsburg', address='1413 Richmond Rd Williamsburg, VA 23185 US', latitude=Decimal('37.28745120000001'), longitude=Decimal('-76.72112800000001'))
Row(state='Virginia', location='Winchester', address='2012 S Pleasant Valley Rd Winchester, VA 22601 US', latitude=Decimal('39.16185433676167'), longitude=Decimal('-78.16800420858102'))
Row(state='Virginia', location='Woodbridge', address='4269 Merchant Plz Woodbridge, VA 22192 US', latitude=Decimal('38.673363'), longitude=Decimal('-77.335084'))
Row(state='Maine', location='Augusta', address='1 Stephen King Dr Ste 10 Augusta, ME 04330 US', latitude=Decimal('44.34477644091354'), longitude=Decimal('-69.78859515735758'))
Row(state='Maine', location='Bangor', address='583 Stillwater Ave Bangor, ME 04401 US', latitude=Decimal('44.82935603508486'), longitude=Decimal('-68.75374996916833'))
Row(state='Maine', location='Portland', address='195 Kennebec St Portland, ME 04101 US', latitude=Decimal('43.660568'), longitude=Decimal('-70.266672'))
Row(state='Maine', location='South Portland', address='359 Maine Mall Rd South Portland, ME 04106 US', latitude=Decimal('43.63497255874913'), longitude=Decimal('-70.33784503067113'))
Row(state='Maine', location='Westbrook', address='11 Main St Suite 3 Westbrook, ME 04092 US', latitude=Decimal('43.67755647093197'), longitude=Decimal('-70.32975335255469'))
Row(state='New Hampshire', location='Bedford', address='99 S River Rd Ste 4 Bedford, NH 03110 US', latitude=Decimal('42.956442956458254'), longitude=Decimal('-71.47796522858198'))
Row(state='New Hampshire', location='Concord', address='265 Loudon Rd Ste 2 Concord, NH 03301 US', latitude=Decimal('43.224509360249'), longitude=Decimal('-71.49008124532544'))
Row(state='New Hampshire', location='Dover', address='826 Central Ave # 15 Dover, NH 03820 US', latitude=Decimal('43.2155466'), longitude=Decimal('-70.8800323'))
Row(state='New Hampshire', location='Keene', address='333 Winchester St Keene, NH 03431 US', latitude=Decimal('42.925172068374394'), longitude=Decimal('-72.28979358341502'))
Row(state='New Hampshire', location='Manchester', address='926 S Willow St Manchester, NH 03103 US', latitude=Decimal('42.9633032'), longitude=Decimal('-71.4416697'))
Row(state='New Hampshire', location='Nashua', address='356 Amherst St Nashua, NH 03063 US', latitude=Decimal('42.78285072690204'), longitude=Decimal('-71.50485844778086'))
Row(state='New Hampshire', location='Newington', address='45 Gosling Rd Unit 5C Newington, NH 03801 US', latitude=Decimal('43.094570371692726'), longitude=Decimal('-70.79909198663125'))
Row(state='Illinois', location='Addison', address='1078 N Rohlwing Rd Lake & Rohlwing Addison, IL 60101 US', latitude=Decimal('41.9496874031525'), longitude=Decimal('-88.03226236073057'))
Row(state='Illinois', location='Algonquin', address='412 S Randall Rd Algonquin, IL 60102 US', latitude=Decimal('42.17159600252217'), longitude=Decimal('-88.3358836669917'))
Row(state='Illinois', location='Arlington Heights', address='338 E Rand Rd Arlington Heights, IL 60004 US', latitude=Decimal('42.11278119202118'), longitude=Decimal('-87.97832011564141'))
Row(state='Illinois', location='Aurora', address='848 N Route 59 Ste 106 Aurora, IL 60504 US', latitude=Decimal('41.76848482177453'), longitude=Decimal('-88.20634978693226'))
Row(state='Illinois', location='Berwyn', address='7140 Cermak Rd Berwyn, IL 60402 US', latitude=Decimal('41.85069115953785'), longitude=Decimal('-87.80281364750965'))
Row(state='Illinois', location='Bloomingdale', address='396 W Army Trail Rd Bloomingdale, IL 60108 US', latitude=Decimal('41.93874655089229'), longitude=Decimal('-88.11421337463663'))
Row(state='Illinois', location='Bloomington', address='305 N Veterans Pkwy Ste 101 Bloomington, IL 61704 US', latitude=Decimal('40.48248541554632'), longitude=Decimal('-88.95222838487888'))
Row(state='Illinois', location='Bolingbrook', address='750 Janes Ave Ste A Bolingbrook, IL 60440 US', latitude=Decimal('41.721287'), longitude=Decimal('-88.0379517'))
Row(state='Illinois', location='Bourbonnais', address='1601 N State Route 50 Bourbonnais, IL 60914 US', latitude=Decimal('41.17397974758985'), longitude=Decimal('-87.85218980919035'))
Row(state='Illinois', location='Bridgeview', address='8813 S. Harlem Ave Bridgeview, IL 60455 US', latitude=Decimal('41.73124799980357'), longitude=Decimal('-87.79849106962604'))
Row(state='Illinois', location='Champaign', address='903 W Anthony Dr # A Champaign, IL 61821 US', latitude=Decimal('40.1374091'), longitude=Decimal('-88.2585773'))
Row(state='Illinois', location='Chicago', address='806 W 63rd St Chicago, IL 60621 US', latitude=Decimal('41.77998374448471'), longitude=Decimal('-87.64511749125887'))
Row(state='Illinois', location='Cicero', address='2201 S Cicero Ave Cicero, IL 60804 US', latitude=Decimal('41.850796200000005'), longitude=Decimal('-87.7439411'))
Row(state='Illinois', location='Countryside', address='5801 S La Grange Rd Countryside, IL 60525 US', latitude=Decimal('41.7847779186473'), longitude=Decimal('-87.86812296932884'))
Row(state='Illinois', location='Crestwood', address='13340 Cicero Ave Crestwood, IL 60418 US', latitude=Decimal('41.64942357682577'), longitude=Decimal('-87.7387279322765'))
Row(state='Illinois', location='Crystal Lake', address='5006 Northwest Hwy Ste A Crystal Lake, IL 60014 US', latitude=Decimal('42.2266201'), longitude=Decimal('-88.29496400000001'))
Row(state='Illinois', location='Decatur', address='4165 N Water St Decatur, IL 62526 US', latitude=Decimal('39.897905200000004'), longitude=Decimal('-88.95560350000001'))
Row(state='Illinois', location='Deerfield', address='675 Deerfield Rd Ste 120 Deerfield, IL 60015 US', latitude=Decimal('42.1671726'), longitude=Decimal('-87.84428620000001'))
Row(state='Illinois', location='Dekalb', address='2383 Sycamore Rd Dekalb, IL 60115 US', latitude=Decimal('41.95327767992289'), longitude=Decimal('-88.72541913125025'))
Row(state='Illinois', location='Downers Grove', address='1556 Butterfield Rd Ste A Downers Grove, IL 60515 US', latitude=Decimal('41.8352626'), longitude=Decimal('-88.025264'))
Row(state='Illinois', location='East Peoria', address='300 W Washington St East Peoria, IL 61611 US', latitude=Decimal('40.66952944937027'), longitude=Decimal('-89.58376065305845'))
Row(state='Illinois', location='Effingham', address='1207 N Keller Dr Effingham, IL 62401 US', latitude=Decimal('39.137954216448655'), longitude=Decimal('-88.56590846932886'))
Row(state='Illinois', location='Elgin', address='2500 N Randall Rd Elgin, IL 60124 US', latitude=Decimal('42.0945929'), longitude=Decimal('-88.3364554'))
Row(state='Illinois', location='Elk Grove Village', address='910 Elk Grove Town Ctr Elk Grove Village, IL 60007 US', latitude=Decimal('42.003125299999994'), longitude=Decimal('-88.0049343'))
Row(state='Illinois', location='Elmhurst', address='353 S IL Route 83 Elmhurst, IL 60126 US', latitude=Decimal('41.890667151462104'), longitude=Decimal('-87.96134850690294'))
Row(state='Illinois', location='Evanston', address='711 Church St Evanston, IL 60201 US', latitude=Decimal('42.04863976134647'), longitude=Decimal('-87.68125400238114'))
Row(state='Illinois', location='Fairview Heights', address='6415 N Illinois St Fairview Heights, IL 62208 US', latitude=Decimal('38.591923078391204'), longitude=Decimal('-89.98552974909114'))
Row(state='Illinois', location='Frankfort', address='11129 W Lincoln Hwy Frankfort, IL 60423 US', latitude=Decimal('41.50231724529297'), longitude=Decimal('-87.8867683582838'))
Row(state='Illinois', location='Franklin Park', address='2926 Mannheim Rd Franklin Park, IL 60131 US', latitude=Decimal('41.93185926667227'), longitude=Decimal('-87.88549358096826'))
Row(state='Illinois', location='Geneva', address='1441 S Randall Rd Ste D Geneva, IL 60134 US', latitude=Decimal('41.87468403493223'), longitude=Decimal('-88.33968800889551'))
Row(state='Illinois', location='Glen Ellyn', address='695 Roosevelt Rd Glen Ellyn, IL 60137 US', latitude=Decimal('41.85900705685357'), longitude=Decimal('-88.05765157729816'))
Row(state='Illinois', location='Glenview', address='3846 Willow Road Glenview, IL 60062 US', latitude=Decimal('42.10959366267737'), longitude=Decimal('-87.87485956564139'))
Row(state='Illinois', location='Gurnee', address='6040 Gurnee Mills Cir E Gurnee, IL 60031 US', latitude=Decimal('42.384201794446284'), longitude=Decimal('-87.95444163379385'))
Row(state='Illinois', location='Hoffman Estates', address='4600 Hoffman Blvd Hoffman Estates, IL 60192 US', latitude=Decimal('42.0705485'), longitude=Decimal('-88.1911205'))
Row(state='Illinois', location='Homer Glen', address='14116 S Bell Rd Homer Glen, IL 60491 US', latitude=Decimal('41.632019824148436'), longitude=Decimal('-87.93181137150394'))
Row(state='Illinois', location='Homewood', address='17700 Halsted St Homewood, IL 60430 US', latitude=Decimal('41.568102'), longitude=Decimal('-87.636909'))
Row(state='Illinois', location='Joliet', address='2848 Plainfield Rd Joliet, IL 60435 US', latitude=Decimal('41.576823'), longitude=Decimal('-88.1589'))
Row(state='Illinois', location='Kildeer', address='20505 Rand Rd Ste 400 Kildeer, IL 60047 US', latitude=Decimal('42.16132855306302'), longitude=Decimal('-88.04982746165672'))
Row(state='Illinois', location='La Grange', address='40 N La Grange Rd La Grange, IL 60525 US', latitude=Decimal('41.81775311651351'), longitude=Decimal('-87.87007642822438'))
Row(state='Illinois', location='Lake Bluff', address='945 Rockland Rd Ste A Lake Bluff, IL 60044 US', latitude=Decimal('42.279017465227106'), longitude=Decimal('-87.87148000372845'))
Row(state='Illinois', location='Libertyville', address='139 N Milwaukee Ave Libertyville, IL 60048 US', latitude=Decimal('42.28394186980323'), longitude=Decimal('-87.95382373170288'))
Row(state='Illinois', location='Lincolnshire', address='950 Milwaukee Ave Ste A Lincolnshire, IL 60069 US', latitude=Decimal('42.18214408154884'), longitude=Decimal('-87.92907698680534'))
Row(state='Illinois', location='Lincolnwood', address='7150 N McCormick Blvd Lincolnwood, IL 60712 US', latitude=Decimal('42.01066901412909'), longitude=Decimal('-87.71212630031448'))
Row(state='Illinois', location='Lockport', address='16433 W 159th St Lockport, IL 60441 US', latitude=Decimal('41.5972833'), longitude=Decimal('-88.0171585'))
Row(state='Illinois', location='Machesney Park', address='1570 W Lane Rd Machesney Park, IL 61115 US', latitude=Decimal('42.3660778'), longitude=Decimal('-89.0234592'))
Row(state='Illinois', location='Matteson', address='4815 211th St Matteson, IL 60443 US', latitude=Decimal('41.505630016609295'), longitude=Decimal('-87.73330354437786'))
Row(state='Illinois', location='McHenry', address='2304 N Richmond Rd McHenry, IL 60051 US', latitude=Decimal('42.359959616430565'), longitude=Decimal('-88.26646467313593'))
Row(state='Illinois', location='Melrose Park', address='1401 W North Ave Ste A Melrose Park, IL 60160 US', latitude=Decimal('41.90883227907935'), longitude=Decimal('-87.85005666916345'))
Row(state='Illinois', location='Mokena', address='19130 S La Grange Rd Ste 100 Mokena, IL 60448 US', latitude=Decimal('41.5417749'), longitude=Decimal('-87.85133950000001'))
Row(state='Illinois', location='Moline', address='3941 41st Avenue Dr Moline, IL 61265 US', latitude=Decimal('41.47069453983136'), longitude=Decimal('-90.47969505552255'))
Row(state='Illinois', location='Mt Prospect', address='102 E Kensington Rd Mt Prospect, IL 60056 US', latitude=Decimal('42.08110867465319'), longitude=Decimal('-87.9356714875911'))
Row(state='Illinois', location='Naperville', address='2856 S Route 59 Ste 108 Naperville, IL 60564 US', latitude=Decimal('41.71182345757522'), longitude=Decimal('-88.20511906702484'))
Row(state='Illinois', location='New Lenox', address='641 E Lincoln Hwy New Lenox, IL 60451 US', latitude=Decimal('41.512814899999995'), longitude=Decimal('-87.9508996'))
Row(state='Illinois', location='Niles', address='8488 W Golf Rd Niles, IL 60714 US', latitude=Decimal('42.05507313807313'), longitude=Decimal('-87.83558873998686'))
Row(state='Illinois', location='Normal', address='701 S Main St Ste A Normal, IL 61761 US', latitude=Decimal('40.50423995214962'), longitude=Decimal('-88.99498813589649'))
Row(state='Illinois', location='Norridge', address='4234 N Harlem Ave Norridge, IL 60706 US', latitude=Decimal('41.9574872'), longitude=Decimal('-87.8075177'))
Row(state='Illinois', location='Northbrook', address='786 Skokie Blvd Northbrook, IL 60062 US', latitude=Decimal('42.139012'), longitude=Decimal('-87.793116'))
Row(state='Illinois', location='Oak Brook', address='2103 Clearwater Dr Oak Brook, IL 60523 US', latitude=Decimal('41.84844840389466'), longitude=Decimal('-87.93227529566826'))
Row(state='Illinois', location='Oak Lawn', address='6230 W 95th St Ste B Oak Lawn, IL 60453 US', latitude=Decimal('41.720040999999995'), longitude=Decimal('-87.77651999999999'))
Row(state='Illinois', location='Oak Park', address='1128 Lake St Frnt A Oak Park, IL 60301 US', latitude=Decimal('41.88883551774075'), longitude=Decimal('-87.80408721584587'))
Row(state='Illinois', location='Oakbrook Terrace', address='18W050 22nd St Oakbrook Terrace, IL 60181 US', latitude=Decimal('41.84660906858677'), longitude=Decimal('-87.97866641448108'))
Row(state='Illinois', location='Orland Park', address='15240 S La Grange Rd Orland Park, IL 60462 US', latitude=Decimal('41.61299337281511'), longitude=Decimal('-87.85493802117333'))
Row(state='Illinois', location='Oswego', address='2432 US Highway 34 Oswego, IL 60543 US', latitude=Decimal('41.70387234370253'), longitude=Decimal('-88.30697778956663'))
Row(state='Illinois', location='Palatine', address='781 E Dundee Rd Palatine, IL 60074 US', latitude=Decimal('42.13866302769923'), longitude=Decimal('-88.025485'))
Row(state='Illinois', location='Park Ridge', address='119 S Northwest Hwy Park Ridge, IL 60068 US', latitude=Decimal('42.009978921753245'), longitude=Decimal('-87.82708567485146'))
Row(state='Illinois', location='Peoria', address='4512 N Sterling Ave I74 Peoria, IL 61615 US', latitude=Decimal('40.74307489351527'), longitude=Decimal('-89.63116594967278'))
Row(state='Illinois', location='Peru', address='4349 Venture Dr Peru, IL 61354 US', latitude=Decimal('41.3605527'), longitude=Decimal('-89.12652299999998'))
Row(state='Illinois', location='Plainfield', address='12720 S Route 59 Unit 100 Plainfield, IL 60585 US', latitude=Decimal('41.651101607322154'), longitude=Decimal('-88.20422347362808'))
Row(state='Illinois', location='Rockford', address='751 S Perryville Rd Rockford, IL 61108 US', latitude=Decimal('42.264563700000004'), longitude=Decimal('-88.98068609999999'))
Row(state='Illinois', location='Rolling Meadows', address='1211 Golf Rd Rolling Meadows, IL 60008 US', latitude=Decimal('42.05048433379231'), longitude=Decimal('-87.9941664040665'))
Row(state='Illinois', location='Romeoville', address='253 S Weber Road Romeoville, IL 60446 US', latitude=Decimal('41.616325656034896'), longitude=Decimal('-88.12274269136913'))
Row(state='Illinois', location='Rosemont', address='7020 Mannheim Rd Rosemont, IL 60018 US', latitude=Decimal('42.0075698'), longitude=Decimal('-87.88545970000001'))
Row(state='Illinois', location='Round Lake Beach', address='1936 IL Route 83 Round Lake Beach, IL 60073 US', latitude=Decimal('42.38274371306954'), longitude=Decimal('-88.06356499999998'))
Row(state='Illinois', location='Saint Charles', address='3821 E Main St Saint Charles, IL 60174 US', latitude=Decimal('41.920621000000004'), longitude=Decimal('-88.265948'))
Row(state='Illinois', location='Schaumburg', address='601 N Martingale Rd Ste 330 Schaumburg, IL 60173 US', latitude=Decimal('42.040268168032064'), longitude=Decimal('-88.03367405183508'))
Row(state='Illinois', location='Skokie', address='9408 Skokie Blvd Skokie, IL 60077 US', latitude=Decimal('42.05226853437416'), longitude=Decimal('-87.74730965945218'))
Row(state='Illinois', location='South Elgin', address='348 Randall Rd South Elgin, IL 60177 US', latitude=Decimal('41.9856531'), longitude=Decimal('-88.34156259999999'))
Row(state='Illinois', location='South Holland', address='559 E 162nd St South Holland, IL 60473 US', latitude=Decimal('41.600221821364975'), longitude=Decimal('-87.60322416469181'))
Row(state='Illinois', location='Springfield', address='2579 Wabash Ave Springfield, IL 62704 US', latitude=Decimal('39.76447218369341'), longitude=Decimal('-89.70433341625312'))
Row(state='Illinois', location='Tinley Park', address='15980 Harlem Ave Tinley Park, IL 60477 US', latitude=Decimal('41.6007970286712'), longitude=Decimal('-87.7946781530121'))
Row(state='Illinois', location='Vernon Hills', address='375 N Milwaukee Ave Ste 100 Vernon Hills, IL 60061 US', latitude=Decimal('42.232535853604226'), longitude=Decimal('-87.94216604411015'))
Row(state='Illinois', location='Villa Park', address='298 W North Ave Unit 1 Villa Park, IL 60181 US', latitude=Decimal('41.90590420916699'), longitude=Decimal('-87.98570447590943'))
Row(state='Illinois', location='Warrenville', address='28251 Diehl Rd Ste A Warrenville, IL 60555 US', latitude=Decimal('41.80168159337958'), longitude=Decimal('-88.17234289356861'))
Row(state='Illinois', location='Waukegan', address='940 S Waukegan Rd Waukegan, IL 60085 US', latitude=Decimal('42.34231062877063'), longitude=Decimal('-87.89580172866579'))
Row(state='Illinois', location='West Dundee', address='201 N 8th St West Dundee, IL 60118 US', latitude=Decimal('42.099735685213965'), longitude=Decimal('-88.2865666828207'))
Row(state='Illinois', location='Westmont', address='300 E Ogden Ave Westmont, IL 60559 US', latitude=Decimal('41.81055615306768'), longitude=Decimal('-87.9681201955636'))
Row(state='Illinois', location='Wheaton', address='811 Butterfield Rd Ste 101 Wheaton, IL 60189 US', latitude=Decimal('41.8301997255652'), longitude=Decimal('-88.09378961536156'))
Row(state='Illinois', location='Wheeling', address='1572 E Lake Cook Rd Wheeling, IL 60090 US', latitude=Decimal('42.155046999999996'), longitude=Decimal('-87.954021'))
Row(state='Illinois', location='Willowbrook', address='7173 S Kingery Hwy Willowbrook, IL 60527 US', latitude=Decimal('41.758660325945705'), longitude=Decimal('-87.94422101015164'))
Row(state='Montana', location='Billings', address='1601 Grand Ave Ste 100 Billings, MT 59102 US', latitude=Decimal('45.784372589646175'), longitude=Decimal('-108.55686033673395'))
Row(state='Montana', location='Bozeman', address='1919 W Main St Ste 1 Bozeman, MT 59718 US', latitude=Decimal('45.679717800324575'), longitude=Decimal('-111.06287480892159'))
Row(state='Montana', location='Missoula', address='2995 N Reserve St Ste A&B Missoula, MT 59808 US', latitude=Decimal('46.8921789'), longitude=Decimal('-114.04001629999999'))
Row(state='Massachusetts', location='Attleboro', address='228 Washington St Shops at Mayfaire II Attleboro, MA 02703 US', latitude=Decimal('41.923615999999996'), longitude=Decimal('-71.356089'))
Row(state='Massachusetts', location='Bedford', address='301 Great Rd Bedford, MA 01730 US', latitude=Decimal('42.486261234109776'), longitude=Decimal('-71.26263480115858'))
Row(state='Massachusetts', location='Beverly', address='55 Dodge St Beverly, MA 01915 US', latitude=Decimal('42.57587812651021'), longitude=Decimal('-70.89119600990847'))
Row(state='Massachusetts', location='Billerica', address='199 Boston Rd Billerica, MA 01862 US', latitude=Decimal('42.58045133898182'), longitude=Decimal('-71.2881531532862'))
Row(state='Massachusetts', location='Boston', address='8 Park Plz Boston, MA 02116 US', latitude=Decimal('42.35175377853128'), longitude=Decimal('-71.06697288841268'))
Row(state='Massachusetts', location='Braintree', address='250 Granite St Ste 153 Braintree, MA 02184 US', latitude=Decimal('42.2207521'), longitude=Decimal('-71.02547059999998'))
Row(state='Massachusetts', location='Brighton', address='1924 Beacon St Brighton, MA 02135 US', latitude=Decimal('42.3364117'), longitude=Decimal('-71.1495791'))
Row(state='Massachusetts', location='Brockton', address='500 Westgate Dr SC 109 Brockton, MA 02301 US', latitude=Decimal('42.09356165215642'), longitude=Decimal('-71.05460064125413'))
Row(state='Massachusetts', location='Brookline', address='876 Commonwealth Avenue Brookline, MA 02215 US', latitude=Decimal('42.35065776049674'), longitude=Decimal('-71.11466163346131'))
Row(state='Massachusetts', location='Burlington', address='110 Mall Rd Burlington, MA 01803 US', latitude=Decimal('42.4861545'), longitude=Decimal('-71.2127228'))
Row(state='Massachusetts', location='Cambridge', address='598 Massachusetts Ave Cambridge, MA 02139 US', latitude=Decimal('42.36482060978186'), longitude=Decimal('-71.10327574604725'))
Row(state='Massachusetts', location='Chelmsford', address='65 Drum Hill Rd Chelmsford, MA 01824 US', latitude=Decimal('42.625005'), longitude=Decimal('-71.362317'))
Row(state='Massachusetts', location='Chicopee', address='530 Memorial Dr Ste A Chicopee, MA 01020 US', latitude=Decimal('42.17270365158624'), longitude=Decimal('-72.57759079804623'))
Row(state='Massachusetts', location='Dedham', address='176 Providence Hwy Dedham, MA 02026 US', latitude=Decimal('42.2576406'), longitude=Decimal('-71.16761600000001'))
Row(state='Massachusetts', location='Dorchester', address='27 District Ave Dorchester, MA 02125 US', latitude=Decimal('42.325733885625255'), longitude=Decimal('-71.0621962070431'))
Row(state='Massachusetts', location='East Longmeadow', address='42 Center Square East Longmeadow, MA 01028 US', latitude=Decimal('42.0650622'), longitude=Decimal('-72.5150848'))
Row(state='Massachusetts', location='Framingham', address='1 Worcester Rd Ste 5 Framingham, MA 01701 US', latitude=Decimal('42.3001226'), longitude=Decimal('-71.3937061'))
Row(state='Massachusetts', location='Franklin', address='5 Franklin Village Dr Franklin, MA 02038 US', latitude=Decimal('42.09008295733779'), longitude=Decimal('-71.42173183003263'))
Row(state='Massachusetts', location='Hadley', address='334 Russell St Hadley, MA 01035 US', latitude=Decimal('42.356924'), longitude=Decimal('-72.553844'))
Row(state='Massachusetts', location='Haverhill', address='89 Plaistow Road Haverhill, MA 01830 US', latitude=Decimal('42.8140687'), longitude=Decimal('-71.1016309'))
Row(state='Massachusetts', location='Hingham', address='92 Derby St Ste 100 Hingham, MA 02043 US', latitude=Decimal('42.178537799999994'), longitude=Decimal('-70.9094917'))
Row(state='Massachusetts', location='Holyoke', address='235 Whiting Farms Rd Holyoke, MA 01040 US', latitude=Decimal('42.175056224664615'), longitude=Decimal('-72.64153989006121'))
Row(state='Massachusetts', location='Hyannis', address='793 Iyannough Rd Spc N-101B Hyannis, MA 02601 US', latitude=Decimal('41.667623'), longitude=Decimal('-70.295635'))
Row(state='Massachusetts', location='Leominster', address='252 Mill St # A Leominster, MA 01453 US', latitude=Decimal('42.533368100000004'), longitude=Decimal('-71.7435946'))
Row(state='Massachusetts', location='Mansfield', address='287 School St Ste 110 Mansfield, MA 02048 US', latitude=Decimal('42.015969'), longitude=Decimal('-71.231264'))
Row(state='Massachusetts', location='Marlborough', address='237 Boston Post Rd W Marlborough, MA 01752 US', latitude=Decimal('42.338815000000004'), longitude=Decimal('-71.59159667'))
Row(state='Massachusetts', location='Medford', address='616 Fellsway Medford, MA 02155 US', latitude=Decimal('42.40599936777244'), longitude=Decimal('-71.08285075070961'))
Row(state='Massachusetts', location='Methuen', address='90 Pleasant Valley St Unit 244 Methuen, MA 01844 US', latitude=Decimal('42.74400604577623'), longitude=Decimal('-71.15655964878515'))
Row(state='Massachusetts', location='Milford', address='128 Medway Rd Ste 8 Milford, MA 01757 US', latitude=Decimal('42.148715682944754'), longitude=Decimal('-71.48807081685811'))
Row(state='Massachusetts', location='Natick', address='219 N Main St Suite A-103 Natick, MA 01760 US', latitude=Decimal('42.3020234'), longitude=Decimal('-71.35983590000001'))
Row(state='Massachusetts', location='Newton', address='300 Needham St Spc 107.2 Newton, MA 02464 US', latitude=Decimal('42.307846000000005'), longitude=Decimal('-71.215047'))
Row(state='Massachusetts', location='North Andover', address='93 Turnpike St North Andover, MA 01845 US', latitude=Decimal('42.676052899999995'), longitude=Decimal('-71.1317931'))
Row(state='Massachusetts', location='North Dartmouth', address='349 State Rd North Dartmouth, MA 02747 US', latitude=Decimal('41.639475712003005'), longitude=Decimal('-70.99168797845522'))
Row(state='Massachusetts', location='Norwood', address='1415 Boston-Providence Highway Norwood, MA 02062 US', latitude=Decimal('42.16446028388891'), longitude=Decimal('-71.19962361922472'))
Row(state='Massachusetts', location='Peabody', address='210 Andover St Unit E194A Peabody, MA 01960 US', latitude=Decimal('42.540819'), longitude=Decimal('-70.944132'))
Row(state='Massachusetts', location='Plymouth', address='51-9 Commerce Way Plaza Plymouth, MA 02360 US', latitude=Decimal('41.9528203'), longitude=Decimal('-70.7110798'))
Row(state='Massachusetts', location='Quincy', address='60 Newport Ave Quincy, MA 02171 US', latitude=Decimal('42.27258364905824'), longitude=Decimal('-71.027264927001'))
Row(state='Massachusetts', location='Randolph', address='51 Warren St Randolph, MA 02368 US', latitude=Decimal('42.165751'), longitude=Decimal('-71.045489'))
Row(state='Massachusetts', location='Raynham', address='421 New State Hwy Raynham, MA 02767 US', latitude=Decimal('41.90581720626018'), longitude=Decimal('-71.0495789587257'))
Row(state='Massachusetts', location='Reading', address='46 Walkers Brook Dr Reading, MA 01867 US', latitude=Decimal('42.5196617'), longitude=Decimal('-71.09225190000001'))
Row(state='Massachusetts', location='Saugus', address='444 Broadway Unit E Saugus, MA 01906 US', latitude=Decimal('42.479612'), longitude=Decimal('-71.02111'))
Row(state='Massachusetts', location='Seekonk', address='35 Highland Ave Seekonk, MA 02771 US', latitude=Decimal('41.8030476'), longitude=Decimal('-71.3387809'))
Row(state='Massachusetts', location='Shrewsbury', address='97 Boston Turnpike Shrewsbury, MA 01545 US', latitude=Decimal('42.275430207647794'), longitude=Decimal('-71.74975460061171'))
Row(state='Massachusetts', location='Somerville', address='274 Elm St Somerville, MA 02144 US', latitude=Decimal('42.39590337320467'), longitude=Decimal('-71.1224187935187'))
Row(state='Massachusetts', location='Swampscott', address='450 Paradise Rd Swampscott, MA 01907 US', latitude=Decimal('42.48177309938848'), longitude=Decimal('-70.90378910296046'))
Row(state='Massachusetts', location='Waltham', address='1110 Lexington St. Waltham, MA 02452 US', latitude=Decimal('42.41319'), longitude=Decimal('-71.23379200000001'))
Row(state='Massachusetts', location='Watertown', address='455 Arsenal St Watertown, MA 02472 US', latitude=Decimal('42.3615737'), longitude=Decimal('-71.1599528'))
Row(state='Massachusetts', location='West Springfield', address='219 Memorial Ave West Springfield, MA 01089 US', latitude=Decimal('42.095728761870255'), longitude=Decimal('-72.59997951843202'))
Row(state='Massachusetts', location='Westborough', address='1 Oak St Ste 2 Westborough, MA 01581 US', latitude=Decimal('42.2855691'), longitude=Decimal('-71.6086093'))
Row(state='Massachusetts', location='Westford', address='174 Littleton Rd Ste 1 Westford, MA 01886 US', latitude=Decimal('42.5666153'), longitude=Decimal('-71.4227983'))
Row(state='Massachusetts', location='Westwood', address='217 University Ave Westwood, MA 02090 US', latitude=Decimal('42.20453889618301'), longitude=Decimal('-71.15359338711983'))
Row(state='Massachusetts', location='Woburn', address='112 Commerce Way Woburn, MA 01801 US', latitude=Decimal('42.516557'), longitude=Decimal('-71.13785899999999'))
Row(state='Massachusetts', location='Worcester', address='49 Park Avenue Suite 1 Worcester, MA 01605 US', latitude=Decimal('42.282189346638546'), longitude=Decimal('-71.80815702943039'))
Row(state='Mississippi', location='Oxford', address='2151 Jackson Ave W Oxford, MS 38655 US', latitude=Decimal('34.363576017474124'), longitude=Decimal('-89.55934720066307'))
Row(state='Mississippi', location='Southaven', address='50 Goodman Rd W Ste A Southaven, MS 38671 US', latitude=Decimal('34.963135763472216'), longitude=Decimal('-89.99041155853466'))
Row(state='Missouri', location='Belton', address='1424 E North Ave Belton, MO 64012 US', latitude=Decimal('38.81400620031876'), longitude=Decimal('-94.51008904938827'))
Row(state='Missouri', location='Blue Springs', address='1115 NE Coronado Dr Blue Springs, MO 64014 US', latitude=Decimal('39.02587500585196'), longitude=Decimal('-94.24831717129886'))
Row(state='Missouri', location='Bridgeton', address='3533 McKelvey Rd Bridgeton, MO 63044 US', latitude=Decimal('38.75069737001519'), longitude=Decimal('-90.42787306688216'))
Row(state='Missouri', location='Chesterfield', address='1676 Clarkson Rd Chesterfield, MO 63017 US', latitude=Decimal('38.64323615873348'), longitude=Decimal('-90.56492599053793'))
Row(state='Missouri', location='Clayton', address='1 N Central Ave Clayton, MO 63105 US', latitude=Decimal('38.65044733154517'), longitude=Decimal('-90.33842950429914'))
Row(state='Missouri', location='Columbia', address='306 S 9th St Columbia, MO 65201 US', latitude=Decimal('38.94797324696109'), longitude=Decimal('-92.32741249694159'))
Row(state='Missouri', location='Creve Coeur', address='11485 Olive Blvd Creve Coeur, MO 63141 US', latitude=Decimal('38.6727048258016'), longitude=Decimal('-90.43588206158459'))
Row(state='Missouri', location='Des Peres', address='80 W County Ctr Ste 10 Des Peres, MO 63131 US', latitude=Decimal('38.599665'), longitude=Decimal('-90.446889'))
Row(state='Missouri', location='Ellisville', address='15836 Manchester Rd Ellisville, MO 63011 US', latitude=Decimal('38.59218926243553'), longitude=Decimal('-90.58439777263294'))
Row(state='Missouri', location='Florissant', address='2391 N Highway 67 Florissant, MO 63033 US', latitude=Decimal('38.804604058964976'), longitude=Decimal('-90.30859845123295'))
Row(state='Missouri', location='Grandview', address='12348 S US Highway 71 Grandview, MO 64030 US', latitude=Decimal('38.902037138459136'), longitude=Decimal('-94.52527397725113'))
Row(state='Missouri', location='Independence', address='18880 E Valley View Pkwy Independence, MO 64055 US', latitude=Decimal('39.03368529558999'), longitude=Decimal('-94.35792527852152'))
Row(state='Missouri', location='Jefferson City', address='1400 Missouri Blvd Jefferson City, MO 65109 US', latitude=Decimal('38.57881916405828'), longitude=Decimal('-92.19271097362804'))
Row(state='Missouri', location='Joplin', address='631 S Range Line Rd Ste B Joplin, MO 64801 US', latitude=Decimal('37.084891'), longitude=Decimal('-94.4767'))
Row(state='Missouri', location='Kansas City', address='8700 NE Flintlock Rd Kansas City, MO 64157 US', latitude=Decimal('39.247727217272356'), longitude=Decimal('-94.46593683804609'))
Row(state='Missouri', location='Kirkwood', address='1255 S Kirkwood Rd Kirkwood, MO 63122 US', latitude=Decimal('38.562539766451465'), longitude=Decimal('-90.40729036091784'))
Row(state='Missouri', location='Lees Summit', address='900 NE Columbus St Columbus and NE Rice Rd. Lees Summit, MO 64086 US', latitude=Decimal('38.92130874163513'), longitude=Decimal('-94.35974360491082'))
Row(state='Missouri', location='O Fallon', address='112 Laura K Dr O Fallon, MO 63366 US', latitude=Decimal('38.78051255402002'), longitude=Decimal('-90.69898105441881'))
Row(state='Missouri', location='Raytown', address='9205 E State Route 350 Raytown, MO 64133 US', latitude=Decimal('38.99439833137826'), longitude=Decimal('-94.47454979169264'))
Row(state='Missouri', location='Saint Joseph', address='5107 N Belt Hwy Ste 101 Saint Joseph, MO 64506 US', latitude=Decimal('39.81365484928083'), longitude=Decimal('-94.81386638100298'))
Row(state='Missouri', location='Saint Louis', address='212 S Grand Blvd Saint Louis, MO 63103 US', latitude=Decimal('38.63261990486088'), longitude=Decimal('-90.2338558190317'))
Row(state='Missouri', location='Springfield', address='3356 S Campbell Ave Springfield, MO 65807 US', latitude=Decimal('37.153023844471704'), longitude=Decimal('-93.29515943005948'))
Row(state='Missouri', location='Warrensburg', address='728 N Maguire St Warrensburg, MO 64093 US', latitude=Decimal('38.77232131297159'), longitude=Decimal('-93.73592333344976'))
Row(state='New Mexico', location='Albuquerque', address='8120 San Pedro Dr NE Albuquerque, NM 87113 US', latitude=Decimal('35.17493880920162'), longitude=Decimal('-106.57497128587913'))
Row(state='New Mexico', location='Clovis', address='3501 N Prince St Clovis, NM 88101 US', latitude=Decimal('34.43428474904138'), longitude=Decimal('-103.195818522999'))
Row(state='New Mexico', location='Farmington', address='4906 E Main St Ste 100 Farmington, NM 87402 US', latitude=Decimal('36.76795107310428'), longitude=Decimal('-108.1477205278569'))
Row(state='New Mexico', location='Las Cruces', address='525 S Telshor Blvd Ste A Las Cruces, NM 88011 US', latitude=Decimal('32.31489248339814'), longitude=Decimal('-106.74361805491085'))
Row(state='New Mexico', location='Santa Fe', address='1001 S Saint Francis Dr Ste 101 Santa Fe, NM 87505 US', latitude=Decimal('35.677805200338454'), longitude=Decimal('-105.95294804926344'))
Row(state='California', location='Alameda', address='2610 5th St Ste A Alameda, CA 94501 US', latitude=Decimal('37.786141007761614'), longitude=Decimal('-122.28120659723874'))
Row(state='California', location='Alhambra', address='2121 W Main St Ste 210 Alhambra, CA 91801 US', latitude=Decimal('34.092555299999994'), longitude=Decimal('-118.1458415'))
Row(state='California', location='Aliso Viejo', address='26661 Aliso Creek Rd Ste A Aliso Viejo, CA 92656 US', latitude=Decimal('33.57698001431661'), longitude=Decimal('-117.72542602602846'))
Row(state='California', location='Anaheim', address='927 S Euclid St Ste B Anaheim, CA 92802 US', latitude=Decimal('33.818638951126964'), longitude=Decimal('-117.94176801989964'))
Row(state='California', location='Apple Valley', address='19179 Bear Valley Rd Ste 4 Apple Valley, CA 92308 US', latitude=Decimal('34.47069588108122'), longitude=Decimal('-117.2457914536875'))
Row(state='California', location='Arcadia', address='400 S Baldwin Ave Ste FC-9 Arcadia, CA 91007 US', latitude=Decimal('34.13572656223666'), longitude=Decimal('-118.04973664929628'))
Row(state='California', location='Arroyo Grande', address='1229 E Grand Ave Arroyo Grande, CA 93420 US', latitude=Decimal('35.12017354508283'), longitude=Decimal('-120.60171216458565'))
Row(state='California', location='Auburn', address='2845 Bell Rd Ste A Auburn, CA 95603 US', latitude=Decimal('38.941200800261605'), longitude=Decimal('-121.09614846331169'))
Row(state='California', location='Azusa', address='860 E Alosta Ave Azusa, CA 91702 US', latitude=Decimal('34.12814641664687'), longitude=Decimal('-117.89157162822436'))
Row(state='California', location='Bakersfield', address='5321 Gosford Rd Bakersfield, CA 93313 US', latitude=Decimal('35.306521838937286'), longitude=Decimal('-119.09252875520805'))
Row(state='California', location='Baldwin Hills', address='3939 Crenshaw Blvd Ste A Baldwin Hills, CA 90008 US', latitude=Decimal('34.01328442374881'), longitude=Decimal('-118.33662499830109'))
Row(state='California', location='Baldwin Park', address='13916 Garvey Ave Baldwin Park, CA 91706 US', latitude=Decimal('34.069396000000005'), longitude=Decimal('-117.97208'))
Row(state='California', location='Banning', address='300 S Highland Springs Ave Ste 11A Banning, CA 92220 US', latitude=Decimal('33.9238641'), longitude=Decimal('-116.94544270000002'))
Row(state='California', location='Barstow', address='2590 High Point Pkwy Barstow, CA 92311 US', latitude=Decimal('34.8528123628865'), longitude=Decimal('-117.082796711455'))
Row(state='California', location='Berkeley', address='2311 Telegraph Ave Berkeley, CA 94704 US', latitude=Decimal('37.86838433691892'), longitude=Decimal('-122.25895608037399'))
Row(state='California', location='Beverly Hills', address='475 N Beverly Dr Beverly Hills, CA 90210 US', latitude=Decimal('34.07132264504001'), longitude=Decimal('-118.40356168956656'))
Row(state='California', location='Brea', address='477 S Associated Rd Ste A Brea, CA 92821 US', latitude=Decimal('33.91179690220889'), longitude=Decimal('-117.88205261146412'))
Row(state='California', location='Brentwood', address='5401 Lone Tree Way Ste 100 Brentwood, CA 94513 US', latitude=Decimal('37.961260178266635'), longitude=Decimal('-121.74884971530331'))
Row(state='California', location='Buena Park', address='5976 Orangethorpe Ave Buena Park, CA 90620 US', latitude=Decimal('33.85831428190834'), longitude=Decimal('-118.03057717907734'))
Row(state='California', location='Burbank', address='4012 W Riverside Dr Burbank, CA 91505 US', latitude=Decimal('34.1516477'), longitude=Decimal('-118.34335130000001'))
Row(state='California', location='Cabazon', address='48557 Morongo Trail Cabazon, CA 92230 US', latitude=Decimal('33.923277399999996'), longitude=Decimal('-116.80533870000001'))
Row(state='California', location='Camarillo', address='660 Ventura Blvd Unit 500 Camarillo, CA 93010 US', latitude=Decimal('34.21725346260006'), longitude=Decimal('-119.06555787396223'))
Row(state='California', location='Campbell', address='1815 S Bascom Ave Campbell, CA 95008 US', latitude=Decimal('37.29088001186664'), longitude=Decimal('-121.93205873037395'))
Row(state='California', location='Canoga Park', address='6600 Topanga Canyon Blvd Unit FC09 Canoga Park, CA 91303 US', latitude=Decimal('34.19'), longitude=Decimal('-118.60255'))
Row(state='California', location='Capitola', address='1955 41st Ave Ste A5 Capitola, CA 95010 US', latitude=Decimal('36.97793296544234'), longitude=Decimal('-121.96629033430656'))
Row(state='California', location='Carlsbad', address='3416 Via Mercato Ste 110 Carlsbad, CA 92009 US', latitude=Decimal('33.081846051416996'), longitude=Decimal('-117.23594035921002'))
Row(state='California', location='Carson', address='20420 Avalon Blvd Ste A Carson, CA 90746 US', latitude=Decimal('33.846571303188675'), longitude=Decimal('-118.26345516132488'))
Row(state='California', location='Castro Valley', address='3369 Castro Valley Blvd Castro Valley, CA 94546 US', latitude=Decimal('37.695348082920106'), longitude=Decimal('-122.07682173834326'))
Row(state='California', location='Cerritos', address='459 Los Cerritos Mall Cerritos, CA 90703 US', latitude=Decimal('33.8619'), longitude=Decimal('-118.092552'))
Row(state='California', location='Chatsworth', address='9175 De Soto Ave Chatsworth, CA 91311 US', latitude=Decimal('34.237524151973574'), longitude=Decimal('-118.5891350291506'))
Row(state='California', location='Chico', address='620 Mangrove Ave Chico, CA 95926 US', latitude=Decimal('39.73437615123794'), longitude=Decimal('-121.83515019816492'))
Row(state='California', location='Chino', address='12188 Central Ave Chino, CA 91710 US', latitude=Decimal('34.03190485597059'), longitude=Decimal('-117.69030120491085'))
Row(state='California', location='Chino Hills', address='13920 City Center Dr Ste 4005 Chino Hills, CA 91709 US', latitude=Decimal('34.0006695'), longitude=Decimal('-117.7316068'))
Row(state='California', location='Chula Vista', address='720 Otay Lakes Rd Chula Vista, CA 91910 US', latitude=Decimal('32.646182'), longitude=Decimal('-117.002625'))
Row(state='California', location='Citrus Heights', address='5851 Sunrise Blvd Citrus Heights, CA 95610 US', latitude=Decimal('38.6720411'), longitude=Decimal('-121.27203279999999'))
Row(state='California', location='City Of Industry', address='17501 Colima Rd Ste C City Of Industry, CA 91748 US', latitude=Decimal('33.991186'), longitude=Decimal('-117.9246994'))
Row(state='California', location='Claremont', address='885 S Indian Hill Blvd Claremont, CA 91711 US', latitude=Decimal('34.079562'), longitude=Decimal('-117.719517'))
Row(state='California', location='Clovis', address='1840 Herndon Ave Clovis, CA 93611 US', latitude=Decimal('36.837102806014755'), longitude=Decimal('-119.6829132847252'))
Row(state='California', location='Colma', address='990 Serramonte Blvd Ste D Colma, CA 94014 US', latitude=Decimal('37.671192136135346'), longitude=Decimal('-122.46439892638864'))
Row(state='California', location='Commerce', address='150 Citadel Dr Commerce, CA 90040 US', latitude=Decimal('34.005728000000005'), longitude=Decimal('-118.152961'))
Row(state='California', location='Compton', address='1759 S Alameda St Ste 104 Compton, CA 90220 US', latitude=Decimal('33.87653521836164'), longitude=Decimal('-118.2178387895666'))
Row(state='California', location='Concord', address='785 Oak Grove Rd Ste E1 Concord, CA 94518 US', latitude=Decimal('37.936932899999995'), longitude=Decimal('-122.02482859999998'))
Row(state='California', location='Corona', address='2560 Tuscany St Ste 102 Corona, CA 92881 US', latitude=Decimal('33.823651'), longitude=Decimal('-117.5165168'))
Row(state='California', location='Costa Mesa', address='468 E 17th St Costa Mesa, CA 92627 US', latitude=Decimal('33.629424900000004'), longitude=Decimal('-117.90954380000001'))
Row(state='California', location='Culver City', address='9512 Culver Blvd Culver City, CA 90232 US', latitude=Decimal('34.0233754'), longitude=Decimal('-118.39433829999999'))
Row(state='California', location='Cupertino', address='20688 Homestead Rd Cupertino, CA 95014 US', latitude=Decimal('37.33731505459836'), longitude=Decimal('-122.03648371994059'))
Row(state='California', location='Cypress', address='6859 Katella Ave Cypress, CA 90630 US', latitude=Decimal('33.8036646'), longitude=Decimal('-118.01243659999999'))
Row(state='California', location='Daly City', address='213 Westlake Ctr Daly City, CA 94015 US', latitude=Decimal('37.7014805'), longitude=Decimal('-122.48236866'))
Row(state='California', location='Danville', address='33 Railroad Ave Danville, CA 94526 US', latitude=Decimal('37.82315928914039'), longitude=Decimal('-122.00409490062908'))
Row(state='California', location='Davis', address='227 E St Ste 1 Davis, CA 95616 US', latitude=Decimal('38.5440526'), longitude=Decimal('-121.7415034'))
Row(state='California', location='Del Mar', address='2710 Via De La Valle Ste 290 Del Mar, CA 92014 US', latitude=Decimal('32.981286594324196'), longitude=Decimal('-117.24979818185976'))
Row(state='California', location='Diamond Bar', address='235 S Diamond Bar Blvd Ste B Diamond Bar, CA 91765 US', latitude=Decimal('34.020877575226734'), longitude=Decimal('-117.81055878105349'))
Row(state='California', location='Downey', address='8890 Apollo Way Ste A Downey, CA 90242 US', latitude=Decimal('33.922229044251125'), longitude=Decimal('-118.13154774014572'))
Row(state='California', location='Dublin', address='7020 Amador Plaza Rd Dublin, CA 94568 US', latitude=Decimal('37.70637316166656'), longitude=Decimal('-121.92911820179428'))
Row(state='California', location='El Cajon', address='225 Jamacha Rd El Cajon, CA 92019 US', latitude=Decimal('32.794036199999994'), longitude=Decimal('-116.93481899999999'))
Row(state='California', location='El Cerrito', address='9901 San Pablo Ave El Cerrito, CA 94530 US', latitude=Decimal('37.89920809436757'), longitude=Decimal('-122.3023088717756'))
Row(state='California', location='El Segundo', address='307 N Pacific Coast Hwy Unit B El Segundo, CA 90245 US', latitude=Decimal('33.9196429750764'), longitude=Decimal('-118.39646644508913'))
Row(state='California', location='Elk Grove', address='7440 Laguna Blvd Ste 124 Elk Grove, CA 95758 US', latitude=Decimal('38.4231808'), longitude=Decimal('-121.4155253'))
Row(state='California', location='Encinitas', address='268 N El Camino Real Encinitas, CA 92024 US', latitude=Decimal('33.05221414764947'), longitude=Decimal('-117.26155619596021'))
Row(state='California', location='Escondido', address='200 E Via Rancho Pkwy Ste 455 Escondido, CA 92025 US', latitude=Decimal('33.071038'), longitude=Decimal('-117.065973'))
Row(state='California', location='Eureka', address='2626 Broadway Street Suite 100 Eureka, CA 95501 US', latitude=Decimal('40.7842726'), longitude=Decimal('-124.18361090000002'))
Row(state='California', location='Fair Oaks', address='5223 Hazel Ave Fair Oaks, CA 95628 US', latitude=Decimal('38.66156367871051'), longitude=Decimal('-121.22605489490637'))
Row(state='California', location='Fairfield', address='1586 Gateway Blvd Ste B Fairfield, CA 94533 US', latitude=Decimal('38.261633262094044'), longitude=Decimal('-122.05847163374688'))
Row(state='California', location='Folsom', address='2379 Iron Point Rd Ste 120 Folsom, CA 95630 US', latitude=Decimal('38.645006275338716'), longitude=Decimal('-121.12336725425827'))
Row(state='California', location='Fontana', address='16595 Sierra Lakes Pkwy Ste 100 Fontana, CA 92336 US', latitude=Decimal('34.1385361'), longitude=Decimal('-117.4413977'))
Row(state='California', location='Foothill Ranch', address='26552 Towne Centre Dr Foothill Ranch, CA 92610 US', latitude=Decimal('33.67950658806537'), longitude=Decimal('-117.66868187607479'))
Row(state='California', location='Foster City', address='2019 Chess Dr Foster City, CA 94404 US', latitude=Decimal('37.562540203832256'), longitude=Decimal('-122.28064386932886'))
Row(state='California', location='Fountain Valley', address='18951 Brookhurst St Fountain Valley, CA 92708 US', latitude=Decimal('33.68759248664302'), longitude=Decimal('-117.95451643741707'))
Row(state='California', location='Fremont', address='5565 Auto Mall Pkwy Fremont, CA 94538 US', latitude=Decimal('37.50434624597707'), longitude=Decimal('-121.97563680350912'))
Row(state='California', location='Fresno', address='80 E Nees Ave Fresno, CA 93720 US', latitude=Decimal('36.85213062086552'), longitude=Decimal('-119.78899949694159'))
Row(state='California', location='Fullerton', address='501 N State College Blvd Ste A Fullerton, CA 92831 US', latitude=Decimal('33.874571303771816'), longitude=Decimal('-117.89017259877664'))
Row(state='California', location='Garden Grove', address='9737 Chapman Ave Ste A Garden Grove, CA 92841 US', latitude=Decimal('33.788840752076446'), longitude=Decimal('-117.96322514508915'))
Row(state='California', location='Gardena', address='1755 W Artesia Blvd Gardena, CA 90248 US', latitude=Decimal('33.873472344157946'), longitude=Decimal('-118.3088412521496'))
Row(state='California', location='Gilroy', address='6955 Camino Arroyo Ste 70 Gilroy, CA 95020 US', latitude=Decimal('37.00297748618978'), longitude=Decimal('-121.55199715368748'))
Row(state='California', location='Glendale', address='155 N Brand Blvd Glendale, CA 91203 US', latitude=Decimal('34.14795064352478'), longitude=Decimal('-118.25529353628349'))
Row(state='California', location='Glendora', address='1365 E Gladstone St Ste 700 Glendora, CA 91740 US', latitude=Decimal('34.116364083478324'), longitude=Decimal('-117.8356347144007'))
Row(state='California', location='Gold River', address='2350 Sunrise Blvd Ste 3 Gold River, CA 95670 US', latitude=Decimal('38.61703934520703'), longitude=Decimal('-121.26894929933836'))
Row(state='California', location='Goleta', address='270 Storke Rd Ste F Goleta, CA 93117 US', latitude=Decimal('34.42917694680606'), longitude=Decimal('-119.8694057122686'))
Row(state='California', location='Granada Hills', address='16959 Devonshire St Granada Hills, CA 91344 US', latitude=Decimal('34.25774798768706'), longitude=Decimal('-118.5020815711813'))
Row(state='California', location='Hanford', address='366 N 12th Ave Ste 113 Hanford, CA 93230 US', latitude=Decimal('36.327476827217744'), longitude=Decimal('-119.67329958895492'))
Row(state='California', location='Hawthorne', address='5330 W Rosecrans Ave Hawthorne, CA 90250 US', latitude=Decimal('33.90123578697386'), longitude=Decimal('-118.37322521000648'))
Row(state='California', location='Hemet', address='2465 W Florida Ave Hemet, CA 92545 US', latitude=Decimal('33.74715564751028'), longitude=Decimal('-116.9975101082838'))
Row(state='California', location='Hermosa Beach', address='1439 Pacific Coast Hwy Hermosa Beach, CA 90254 US', latitude=Decimal('33.86533148472044'), longitude=Decimal('-118.39348661381166'))
Row(state='California', location='Hesperia', address='9770 Mariposa Rd Hesperia, CA 92345 US', latitude=Decimal('34.427957'), longitude=Decimal('-117.37835'))
Row(state='California', location='Huntington Beach', address='7101 Yorktown Ave #100 Huntington Beach, CA 92648 US', latitude=Decimal('33.68070597247496'), longitude=Decimal('-118.00434687881871'))
Row(state='California', location='Imperial Beach', address='801 Palm Ave Imperial Beach, CA 91932 US', latitude=Decimal('32.583602564038'), longitude=Decimal('-117.1154485898486'))
Row(state='California', location='Inglewood', address='3421 W Century Blvd Inglewood, CA 90303 US', latitude=Decimal('33.94656227495007'), longitude=Decimal('-118.33218297298164'))
Row(state='California', location='Irvine', address='731 Spectrum Center Dr Irvine, CA 92618 US', latitude=Decimal('33.65076778673915'), longitude=Decimal('-117.74288414416293'))
Row(state='California', location='La Canada Flintridge', address='895 Foothill Blvd Ste A La Canada Flintridge, CA 91011 US', latitude=Decimal('34.2035553021316'), longitude=Decimal('-118.19775441532688'))
Row(state='California', location='La Habra', address='1202 S Idaho St Ste A La Habra, CA 90631 US', latitude=Decimal('33.91679033475907'), longitude=Decimal('-117.95886346154207'))
Row(state='California', location='La Jolla', address='8657 Villa La Jolla Dr Ste 209 La Jolla, CA 92037 US', latitude=Decimal('32.865734'), longitude=Decimal('-117.232143'))
Row(state='California', location='La Mesa', address='8005 Fletcher Pkwy La Mesa, CA 91942 US', latitude=Decimal('32.77361313869'), longitude=Decimal('-117.02695971336595'))
Row(state='California', location='La Quinta', address='79174 Highway 111 Ste 101 La Quinta, CA 92253 US', latitude=Decimal('33.710716'), longitude=Decimal('-116.2832098'))
Row(state='California', location='La Verne', address='2298 Foothill Blvd Ste C La Verne, CA 91750 US', latitude=Decimal('34.11205096859536'), longitude=Decimal('-117.76224672293085'))
Row(state='California', location='Lafayette', address='3518 Mt Diablo Blvd Ste F Lafayette, CA 94549 US', latitude=Decimal('37.89320838385394'), longitude=Decimal('-122.11811986871719'))
Row(state='California', location='Laguna Niguel', address='32391 Golden Lantern Ste A Laguna Niguel, CA 92677 US', latitude=Decimal('33.492622600000004'), longitude=Decimal('-117.6981154'))
Row(state='California', location='Lake Forest', address='23645 El Toro Road Lake Forest, CA 92630 US', latitude=Decimal('33.618825783657925'), longitude=Decimal('-117.70345915116064'))
Row(state='California', location='Lakewood', address='5310 Lakewood Blvd Lakewood, CA 90712 US', latitude=Decimal('33.854145981105354'), longitude=Decimal('-118.14194237629259'))
Row(state='California', location='Lancaster', address='855 W. Avenue K. Suite 101 Lancaster, CA 93534 US', latitude=Decimal('34.675182'), longitude=Decimal('-118.1473502'))
Row(state='California', location='Lebec', address='5602 Dennis McCarthy Dr Ste B Lebec, CA 93243 US', latitude=Decimal('34.98650931128791'), longitude=Decimal('-118.94631826994056'))
Row(state='California', location='Livermore', address='4691 1st St Livermore, CA 94551 US', latitude=Decimal('37.6990748'), longitude=Decimal('-121.74167959999998'))
Row(state='California', location='Lodi', address='2601 Reynolds Ranch Pkwy Ste 140 Lodi, CA 95240 US', latitude=Decimal('38.1007584'), longitude=Decimal('-121.26711920000001'))
Row(state='California', location='Long Beach', address='6324 E Pacific Coast Hwy Ste A Long Beach, CA 90803 US', latitude=Decimal('33.759875'), longitude=Decimal('-118.11483500000001'))
Row(state='California', location='Los Angeles', address='8420 Beverly Blvd Los Angeles, CA 90048 US', latitude=Decimal('34.07313567'), longitude=Decimal('-118.37276533'))
Row(state='California', location='Los Gatos', address='640 Blossom Hill Rd Los Gatos, CA 95032 US', latitude=Decimal('37.23535350416661'), longitude=Decimal('-121.96365672110028'))
Row(state='California', location='Madera', address='2180 W Cleveland Ave Ste 104 Madera, CA 93637 US', latitude=Decimal('36.974021941219185'), longitude=Decimal('-120.08301113121536'))
Row(state='California', location='Malibu', address='3822 Cross Creek Rd Unit 3834 Malibu, CA 90265 US', latitude=Decimal('34.036158'), longitude=Decimal('-118.68482900000001'))
Row(state='California', location='Manteca', address='1442 Hulsey Way Manteca, CA 95336 US', latitude=Decimal('37.79631039976567'), longitude=Decimal('-121.19301733313456'))
Row(state='California', location='Marina', address='140 General Stillwell Drive Suite 106 Marina, CA 93933 US', latitude=Decimal('36.66588128255013'), longitude=Decimal('-121.80972461674023'))
Row(state='California', location='Marina Del Rey', address='4718 Admiralty Way Marina Del Rey, CA 90292 US', latitude=Decimal('33.979174'), longitude=Decimal('-118.4383297'))
Row(state='California', location='Martinez', address='1061 Arnold Dr Martinez, CA 94553 US', latitude=Decimal('37.994762435151145'), longitude=Decimal('-122.10585776070695'))
Row(state='California', location='Menifee', address='30024 Haun Rd Ste 130 Menifee, CA 92584 US', latitude=Decimal('33.68456530437326'), longitude=Decimal('-117.17496204295696'))
Row(state='California', location='Merced', address='3110 R St Ste A Merced, CA 95348 US', latitude=Decimal('37.31977990890728'), longitude=Decimal('-120.48614440335558'))
Row(state='California', location='Millbrae', address='135 S El Camino Real Millbrae, CA 94030 US', latitude=Decimal('37.596642874817725'), longitude=Decimal('-122.38616887789247'))
Row(state='California', location='Milpitas', address='246 Great Mall Dr Ste 246 Milpitas, CA 95035 US', latitude=Decimal('37.41575562692226'), longitude=Decimal('-121.89755758631577'))
Row(state='California', location='Mira Loma', address='12411 Limonite Ave Ste 600 Mira Loma, CA 91752 US', latitude=Decimal('33.97667219672287'), longitude=Decimal('-117.55285768220905'))
Row(state='California', location='Mission Hills', address='10384 Sepulveda Blvd Ste 2E Mission Hills, CA 91345 US', latitude=Decimal('34.25942'), longitude=Decimal('-118.46659070000001'))
Row(state='California', location='Mission Viejo', address='Vc10 Shops At Mission Viejo Mission Viejo, CA 92691 US', latitude=Decimal('33.557971492152284'), longitude=Decimal('-117.6689722662411'))
Row(state='California', location='Modesto', address='3401 Dale Rd Ste 650 Modesto, CA 95356 US', latitude=Decimal('37.68870917570512'), longitude=Decimal('-121.05397590868586'))
Row(state='California', location='Monrovia', address='608 W Huntington Dr Monrovia, CA 91016 US', latitude=Decimal('34.13980863005088'), longitude=Decimal('-118.01247076711643'))
Row(state='California', location='Montclair', address='9177 Central Ave Ste B Montclair, CA 91763 US', latitude=Decimal('34.08735747390883'), longitude=Decimal('-117.68910175613422'))
Row(state='California', location='Montebello', address='545 N Montebello Blvd Ste B Montebello, CA 90640 US', latitude=Decimal('34.018975299999994'), longitude=Decimal('-118.1059054'))
Row(state='California', location='Monterey', address='560 Munras Ave Ste 20 Monterey, CA 93940 US', latitude=Decimal('36.59696784159582'), longitude=Decimal('-121.89450361394216'))
Row(state='California', location='Monterey Park', address='2180 S Atlantic Blvd Suite B Monterey Park, CA 91754 US', latitude=Decimal('34.03839617176134'), longitude=Decimal('-118.14455450980438'))
Row(state='California', location='Moorpark', address='806 E Los Angeles Ave. Moorpark, CA 93021 US', latitude=Decimal('34.278874'), longitude=Decimal('-118.8665098'))
Row(state='California', location='Moreno Valley', address='12625 Frederick St Ste S-1 Moreno Valley, CA 92553 US', latitude=Decimal('33.93697901084461'), longitude=Decimal('-117.2618174240078'))
Row(state='California', location='Morgan Hill', address='775 Cochrane Rd Ste 140 Morgan Hill, CA 95037 US', latitude=Decimal('37.15120417259024'), longitude=Decimal('-121.65604422441992'))
Row(state='California', location='Mountain View', address='2400 Charleston Rd Mountain View, CA 94043 US', latitude=Decimal('37.4218453291052'), longitude=Decimal('-122.09651837949751'))
Row(state='California', location='Murrieta', address='40940 California Oaks Rd Ste A Murrieta, CA 92562 US', latitude=Decimal('33.5683063848896'), longitude=Decimal('-117.20468239847946'))
Row(state='California', location='Napa', address='304 Soscol Ave Ste F Napa, CA 94559 US', latitude=Decimal('38.28588119085403'), longitude=Decimal('-122.27434205735756'))
Row(state='California', location='National City', address='404 Mile Of Cars Way National City, CA 91950 US', latitude=Decimal('32.66055955059648'), longitude=Decimal('-117.1055656270026'))
Row(state='California', location='Newark', address='34883 Newark Blvd Newark, CA 94560 US', latitude=Decimal('37.55115907630892'), longitude=Decimal('-122.05144880393186'))
Row(state='California', location='Newport Beach', address='3101 Newport Blvd Newport Beach, CA 92663 US', latitude=Decimal('33.6152648852506'), longitude=Decimal('-117.93063838245148'))
Row(state='California', location='Norco', address='1409 Hamner Ave Norco, CA 92860 US', latitude=Decimal('33.902656'), longitude=Decimal('-117.56189499999999'))
Row(state='California', location='North Hollywood', address='5240 Lankershim Blvd North Hollywood, CA 91601 US', latitude=Decimal('34.1661600822382'), longitude=Decimal('-118.37501567104816'))
Row(state='California', location='Northridge', address='9160 Reseda Blvd Northridge, CA 91324 US', latitude=Decimal('34.23697270172239'), longitude=Decimal('-118.53570619413168'))
Row(state='California', location='Novato', address='880 De Long Ave Novato, CA 94945 US', latitude=Decimal('38.10599116178466'), longitude=Decimal('-122.56960896073052'))
Row(state='California', location='Oakland', address='8460 Edgewater Dr Ste C Oakland, CA 94621 US', latitude=Decimal('37.737940786182094'), longitude=Decimal('-122.19746573745556'))
Row(state='California', location='Oceanside', address='495 College Blvd Ste A Oceanside, CA 92057 US', latitude=Decimal('33.245213451838396'), longitude=Decimal('-117.29050765091336'))
Row(state='California', location='Ontario', address='2200 S Grove Ave Ste 104 Ontario, CA 91761 US', latitude=Decimal('34.03373896280914'), longitude=Decimal('-117.62892868773157'))
Row(state='California', location='Orange', address='3440 E Chapman Ave Orange, CA 92869 US', latitude=Decimal('33.787170245544765'), longitude=Decimal('-117.81656088159728'))
Row(state='California', location='Oroville', address='325 Oroville Dam Blvd Suite E1 Oroville, CA 95965 US', latitude=Decimal('39.49757019320775'), longitude=Decimal('-121.57234387204487'))
Row(state='California', location='Oxnard', address='369 W Esplanade Dr Oxnard, CA 93036 US', latitude=Decimal('34.2340585'), longitude=Decimal('-119.17861740000001'))
Row(state='California', location='Pacific Palisades', address='15207 W Sunset Blvd Pacific Palisades, CA 90272 US', latitude=Decimal('34.046596'), longitude=Decimal('-118.524413'))
Row(state='California', location='Palm Desert', address='72333 Highway 111 Ste A Palm Desert, CA 92260 US', latitude=Decimal('33.7281369'), longitude=Decimal('-116.40305049999999'))
Row(state='California', location='Palm Springs', address='2465 E Palm Canyon Dr Ste 1110 Palm Springs, CA 92264 US', latitude=Decimal('33.800772096449144'), longitude=Decimal('-116.52167565167817'))
Row(state='California', location='Palmdale', address='1125 W Rancho Vista Blvd Ste B Palmdale, CA 93551 US', latitude=Decimal('34.6023208'), longitude=Decimal('-118.1503435'))
Row(state='California', location='Palo Alto', address='2675 El Camino Real Palo Alto, CA 94306 US', latitude=Decimal('37.42387416998631'), longitude=Decimal('-122.14306001409534'))
Row(state='California', location='Panorama City', address='7940 Van Nuys Blvd # 2A Panorama City, CA 91402 US', latitude=Decimal('34.21576549591313'), longitude=Decimal('-118.4484124987124'))
Row(state='California', location='Paramount', address='15754 Paramount Blvd A Paramount, CA 90723 US', latitude=Decimal('33.8895507'), longitude=Decimal('-118.15984920000001'))
Row(state='California', location='Pasadena', address='3409 E Foothill Blvd Pasadena, CA 91107 US', latitude=Decimal('34.151687162182554'), longitude=Decimal('-118.08020075602523'))
Row(state='California', location='Paso Robles', address='98 Niblick Rd Paso Robles, CA 93446 US', latitude=Decimal('35.614783491487046'), longitude=Decimal('-120.6833899971'))
Row(state='California', location='Perris', address='1870 N Perris Blvd Perris, CA 92571 US', latitude=Decimal('33.80745746473947'), longitude=Decimal('-117.2265905485969'))
Row(state='California', location='Petaluma', address='401 Kenilworth Dr Ste 710 Petaluma, CA 94952 US', latitude=Decimal('38.24360598292279'), longitude=Decimal('-122.62638934384842'))
Row(state='California', location='Pico Rivera', address='8888 Whittier Blvd Pico Rivera, CA 90660 US', latitude=Decimal('34.00121277753509'), longitude=Decimal('-118.084295939847'))
Row(state='California', location='Pinole', address='2696 Pinole Valley Rd Pinole, CA 94564 US', latitude=Decimal('37.995844880693774'), longitude=Decimal('-122.28616963049593'))
Row(state='California', location='Pittsburg', address='4418 Century Blvd Pittsburg, CA 94565 US', latitude=Decimal('38.005543685158585'), longitude=Decimal('-121.83947117605857'))
Row(state='California', location='Placentia', address='1474 N Kraemer Blvd Ste A3 Placentia, CA 92870 US', latitude=Decimal('33.887538899999996'), longitude=Decimal('-117.8627577'))
Row(state='California', location='Placerville', address='3987 Missouri Flat Rd Ste 390 Placerville, CA 95667 US', latitude=Decimal('38.71319049321305'), longitude=Decimal('-120.84009296658495'))
Row(state='California', location='Pleasant Hill', address='60 Crescent Dr Ste G Pleasant Hill, CA 94523 US', latitude=Decimal('37.945835200000005'), longitude=Decimal('-122.0617206'))
Row(state='California', location='Pleasanton', address='6654 Koll Center Pkwy Ste 330 Pleasanton, CA 94566 US', latitude=Decimal('37.6589742'), longitude=Decimal('-121.897972'))
Row(state='California', location='Pomona', address='785 Rio Rancho Rd Ste 300 Pomona, CA 91766 US', latitude=Decimal('34.03369167184923'), longitude=Decimal('-117.75679611288011'))
Row(state='California', location='Porterville', address='1174 W Henderson Ave Ste B Porterville, CA 93257 US', latitude=Decimal('36.080879100000004'), longitude=Decimal('-119.04357749999998'))
Row(state='California', location='Poway', address='13495 Poway Rd Poway, CA 92064 US', latitude=Decimal('32.95490609620121'), longitude=Decimal('-117.03890350249391'))
Row(state='California', location='Rancho Cordova', address='2878 Zinfandel Dr Ste A Rancho Cordova, CA 95670 US', latitude=Decimal('38.59431543959226'), longitude=Decimal('-121.28856367792721'))
Row(state='California', location='Rancho Cucamonga', address='7879 Monticello Ave Rancho Cucamonga, CA 91739 US', latitude=Decimal('34.110306994392225'), longitude=Decimal('-117.53548142270182'))
Row(state='California', location='Rancho Santa Margarita', address='22245 El Paseo Ste C Rancho Santa Margarita, CA 92688 US', latitude=Decimal('33.639114539934354'), longitude=Decimal('-117.59409620985576'))
Row(state='California', location='Redding', address='961 Dana Dr Ste 160 Redding, CA 96003 US', latitude=Decimal('40.585336942860884'), longitude=Decimal('-122.35400461331209'))
Row(state='California', location='Redlands', address='635 Orange St Redlands, CA 92374 US', latitude=Decimal('34.061169'), longitude=Decimal('-117.18281999999999'))
Row(state='California', location='Redondo Beach', address='1430 S Pacific Coast Hwy Redondo Beach, CA 90277 US', latitude=Decimal('33.821682621174155'), longitude=Decimal('-118.38514218711988'))
Row(state='California', location='Redwood City', address='861 Middlefield Rd Redwood City, CA 94063 US', latitude=Decimal('37.485819899999996'), longitude=Decimal('-122.2289647'))
Row(state='California', location='Rialto', address='186 E Easton St Ste A Rialto, CA 92376 US', latitude=Decimal('34.13477400873257'), longitude=Decimal('-117.36932463011198'))
Row(state='California', location='Riverbank', address='2207 Claribel Rd Ste A Riverbank, CA 95367 US', latitude=Decimal('37.711644005618155'), longitude=Decimal('-120.95793705694071'))
Row(state='California', location='Riverside', address='8956 Trautwein Rd Ste 100 Riverside, CA 92508 US', latitude=Decimal('33.8903167'), longitude=Decimal('-117.32428940000001'))
Row(state='California', location='Rocklin', address='5194 Commons Dr Ste 101 Rocklin, CA 95677 US', latitude=Decimal('38.80463574925882'), longitude=Decimal('-121.20656128662053'))
Row(state='California', location='Rohnert Park', address='6325 Commerce Blvd Rohnert Park, CA 94928 US', latitude=Decimal('38.34732644821982'), longitude=Decimal('-122.71012806688213'))
Row(state='California', location='Rolling Hills Estates', address='4C Peninsula Ctr Rolling Hills Estates, CA 90274 US', latitude=Decimal('33.7761393'), longitude=Decimal('-118.37578909999998'))
Row(state='California', location='Rosemead', address='3616 Rosemead Blvd Rosemead, CA 91770 US', latitude=Decimal('34.07458922642114'), longitude=Decimal('-118.07220788252356'))
Row(state='California', location='Roseville', address='781 Pleasant Grove Blvd Ste 140 Roseville, CA 95678 US', latitude=Decimal('38.7895085668169'), longitude=Decimal('-121.28090681840268'))
Row(state='California', location='Sacramento', address='8124 Delta Shores Cir S Sacramento, CA 95832 US', latitude=Decimal('38.46504960000001'), longitude=Decimal('-121.49229380000001'))
Row(state='California', location='Salinas', address='1748 N Main St Salinas, CA 93906 US', latitude=Decimal('36.71701510032351'), longitude=Decimal('-121.65393674938831'))
Row(state='California', location='San Bernardino', address='1092 E Hospitality Ln Ste B San Bernardino, CA 92408 US', latitude=Decimal('34.069252980682066'), longitude=Decimal('-117.26190170053064'))
Row(state='California', location='San Bruno', address='1150 El Camino Real Ste 197 San Bruno, CA 94066 US', latitude=Decimal('37.637204100000005'), longitude=Decimal('-122.4172493'))
Row(state='California', location='San Carlos', address='1135 Industrial Rd Ste C San Carlos, CA 94070 US', latitude=Decimal('37.50220845635966'), longitude=Decimal('-122.24637262417464'))
Row(state='California', location='San Clemente', address='806 Avenida Pico Ste D San Clemente, CA 92673 US', latitude=Decimal('33.44339123209546'), longitude=Decimal('-117.61372755729354'))
Row(state='California', location='San Diego', address='8750 Genesee Ave Ste 240 San Diego, CA 92122 US', latitude=Decimal('32.8695554'), longitude=Decimal('-117.2154937'))
Row(state='California', location='San Fernando', address='1100 Truman St San Fernando, CA 91340 US', latitude=Decimal('34.28358071628897'), longitude=Decimal('-118.44139870118244'))
Row(state='California', location='San Francisco', address='865 Market St Ste C10 San Francisco, CA 94103 US', latitude=Decimal('37.78413352073621'), longitude=Decimal('-122.40694442249372'))
Row(state='California', location='San Jose', address='975 The Alameda Ste 10 San Jose, CA 95126 US', latitude=Decimal('37.33190681788295'), longitude=Decimal('-121.9086599122678'))
Row(state='California', location='San Leandro', address='1505 E 14th St San Leandro, CA 94577 US', latitude=Decimal('37.72336091000679'), longitude=Decimal('-122.15393846504055'))
Row(state='California', location='San Luis Obispo', address='297 Madonna Rd San Luis Obispo, CA 93405 US', latitude=Decimal('35.262614635093776'), longitude=Decimal('-120.6776980849703'))
Row(state='California', location='San Marcos', address='575 Grand Ave Ste 101 San Marcos, CA 92078 US', latitude=Decimal('33.137033'), longitude=Decimal('-117.17627'))
Row(state='California', location='San Mateo', address='1050 Park Pl San Mateo, CA 94403 US', latitude=Decimal('37.544695792603406'), longitude=Decimal('-122.2914919827747'))
Row(state='California', location='San Pedro', address='940 N Western Ave Unit F San Pedro, CA 90732 US', latitude=Decimal('33.751044'), longitude=Decimal('-118.307344'))
Row(state='California', location='San Rafael', address='5800 Northgate Dr Ste 154 San Rafael, CA 94903 US', latitude=Decimal('38.0042166'), longitude=Decimal('-122.544202'))
Row(state='California', location='San Ramon', address='2421 San Ramon Valley Blvd San Ramon, CA 94583 US', latitude=Decimal('37.77515170504685'), longitude=Decimal('-121.97801796374807'))
Row(state='California', location='Sand City', address='2140 California Ave Sand City, CA 93955 US', latitude=Decimal('36.62262582038521'), longitude=Decimal('-121.84366126380631'))
Row(state='California', location='Santa Ana', address='629 S Harbor Blvd Santa Ana, CA 92704 US', latitude=Decimal('33.73867472818457'), longitude=Decimal('-117.91965691960245'))
Row(state='California', location='Santa Barbara', address='3851 State St Ste A Santa Barbara, CA 93105 US', latitude=Decimal('34.439503969029175'), longitude=Decimal('-119.749159864462'))
Row(state='California', location='Santa Clara', address='3952 Rivermark Plz Santa Clara, CA 95054 US', latitude=Decimal('37.39480489533197'), longitude=Decimal('-121.946407394792'))
Row(state='California', location='Santa Clarita', address='19085 Golden Valley Rd Unit 105 Santa Clarita, CA 91387 US', latitude=Decimal('34.394448700000005'), longitude=Decimal('-118.46276100000001'))
Row(state='California', location='Santa Cruz', address='550 River St Ste A Santa Cruz, CA 95060 US', latitude=Decimal('36.982613719479865'), longitude=Decimal('-122.02936357270187'))
Row(state='California', location='Santa Maria', address='232 E Betteravia Rd Santa Maria, CA 93454 US', latitude=Decimal('34.92132229700554'), longitude=Decimal('-120.43301217177566'))
Row(state='California', location='Santa Monica', address='2025 Wilshire Blvd Santa Monica, CA 90403 US', latitude=Decimal('34.031985802324826'), longitude=Decimal('-118.48289062822435'))
Row(state='California', location='Santa Rosa', address='336A Coddingtown Ctr Santa Rosa, CA 95401 US', latitude=Decimal('38.458189000000004'), longitude=Decimal('-122.73005800000001'))
Row(state='California', location='Santee', address='9828 Mission Gorge Rd Ste C Santee, CA 92071 US', latitude=Decimal('32.8410211'), longitude=Decimal('-116.98141229999999'))
Row(state='California', location='Seal Beach', address='12359 Seal Beach Blvd Seal Beach, CA 90740 US', latitude=Decimal('33.782980697390315'), longitude=Decimal('-118.07234152637191'))
Row(state='California', location='Selma', address='3120 Floral Ave 108A Selma, CA 93662 US', latitude=Decimal('36.5770809467151'), longitude=Decimal('-119.63236487017956'))
Row(state='California', location='Sherman Oaks', address='14708 Ventura Blvd Ste B Sherman Oaks, CA 91403 US', latitude=Decimal('34.151536799999995'), longitude=Decimal('-118.45361809999999'))
Row(state='California', location='Signal Hill', address='959 E. Spring Street Signal Hill, CA 90755 US', latitude=Decimal('33.8119251213897'), longitude=Decimal('-118.18127129861408'))
Row(state='California', location='Simi Valley', address='1263 Simi Town Center Way Ste H2 Simi Valley, CA 93065 US', latitude=Decimal('34.284106799999996'), longitude=Decimal('-118.7753668'))
Row(state='California', location='South Gate', address='4709 Firestone Blvd South Gate, CA 90280 US', latitude=Decimal('33.952512'), longitude=Decimal('-118.1856175'))
Row(state='California', location='South Lake Tahoe', address='3640-A Lake Tahoe Blvd Suite 100 South Lake Tahoe, CA 96150 US', latitude=Decimal('38.94798660000001'), longitude=Decimal('-119.95803070000001'))
Row(state='California', location='Stockton', address='4940 Pacific Ave Stockton, CA 95207 US', latitude=Decimal('37.994668901660795'), longitude=Decimal('-121.31343740444309'))
Row(state='California', location='Studio City', address='12175 Ventura Blvd Studio City, CA 91604 US', latitude=Decimal('34.14355872066686'), longitude=Decimal('-118.39770930372141'))
Row(state='California', location='Sunnyvale', address='324 W El Camino Real # B-3 Sunnyvale, CA 94087 US', latitude=Decimal('37.3677565'), longitude=Decimal('-122.03615400000001'))
Row(state='California', location='Tarzana', address='18700 Ventura Blvd Ste 130 Tarzana, CA 91356 US', latitude=Decimal('34.17039740108223'), longitude=Decimal('-118.54119355487137'))
Row(state='California', location='Temecula', address='32195 Temecula Pkwy Ste 105 Temecula, CA 92592 US', latitude=Decimal('33.481128999999996'), longitude=Decimal('-117.096994'))
Row(state='California', location='Temple City', address='5809 Rosemead Blvd Temple City, CA 91780 US', latitude=Decimal('34.104635951365104'), longitude=Decimal('-118.07389619479198'))
Row(state='California', location='Thousand Oaks', address='935 Broadbeck Dr Ste C Thousand Oaks, CA 91320 US', latitude=Decimal('34.191161891893024'), longitude=Decimal('-118.9376642600124'))
Row(state='California', location='Torrance', address='3525 W Carson St Ste VC02 Torrance, CA 90503 US', latitude=Decimal('33.83295'), longitude=Decimal('-118.34929299999999'))
Row(state='California', location='Tracy', address='2512 Naglee Rd Tracy, CA 95304 US', latitude=Decimal('37.75546914528877'), longitude=Decimal('-121.46494850107537'))
Row(state='California', location='Tulare', address='1108 E Prosperity Ave Tulare, CA 93274 US', latitude=Decimal('36.22621558670599'), longitude=Decimal('-119.32893804605008'))
Row(state='California', location='Turlock', address='3090 Countryside Dr Turlock, CA 95380 US', latitude=Decimal('37.520645'), longitude=Decimal('-120.88092900000001'))
Row(state='California', location='Tustin', address='15040 Kensington Park Dr Tustin, CA 92782 US', latitude=Decimal('33.712719'), longitude=Decimal('-117.817008'))
Row(state='California', location='Ukiah', address='596 E Perkins St Ukiah, CA 95482 US', latitude=Decimal('39.15164538001051'), longitude=Decimal('-123.19935967361069'))
Row(state='California', location='Union City', address='30920 Dyer St Union City, CA 94587 US', latitude=Decimal('37.602459390316284'), longitude=Decimal('-122.06906675183508'))
Row(state='California', location='Upland', address='1092 N Mountain Ave Upland, CA 91786 US', latitude=Decimal('34.108382301763804'), longitude=Decimal('-117.66990272822436'))
Row(state='California', location='Vacaville', address='1620 E Monte Vista Ave Ste 101 Vacaville, CA 95688 US', latitude=Decimal('38.36690410069812'), longitude=Decimal('-121.96241685072005'))
Row(state='California', location='Valencia', address='28102 Newhall Ranch Rd Valencia, CA 91355 US', latitude=Decimal('34.442657297289536'), longitude=Decimal('-118.5737745575242'))
Row(state='California', location='Vallejo', address='1195 Admiral Callaghan Ln Vallejo, CA 94591 US', latitude=Decimal('38.13695774353621'), longitude=Decimal('-122.2150147826651'))
Row(state='California', location='Van Nuys', address='5600 Van Nuys Blvd Van Nuys, CA 91401 US', latitude=Decimal('34.17231389842011'), longitude=Decimal('-118.44830875031454'))
Row(state='California', location='Ventura', address='488 S Mills Rd Ste 104 Ventura, CA 93003 US', latitude=Decimal('34.26674003395353'), longitude=Decimal('-119.2460874911045'))
Row(state='California', location='Visalia', address='4219 S Mooney Blvd Ste B Visalia, CA 93277 US', latitude=Decimal('36.292363988344675'), longitude=Decimal('-119.31439473346643'))
Row(state='California', location='Vista', address='30 Main St Ste 100 Vista, CA 92083 US', latitude=Decimal('33.200884'), longitude=Decimal('-117.244767'))
Row(state='California', location='Walnut', address='21710 Valley Blvd Ste A Walnut, CA 91789 US', latitude=Decimal('34.02788976764153'), longitude=Decimal('-117.83385521810551'))
Row(state='California', location='Walnut Creek', address='1158 Locust St # D-2A Walnut Creek, CA 94596 US', latitude=Decimal('37.8956359'), longitude=Decimal('-122.061034'))
Row(state='California', location='Walnut Park', address='2110 E Florence Ave Walnut Park, CA 90255 US', latitude=Decimal('33.9744431419157'), longitude=Decimal('-118.23350551717932'))
Row(state='California', location='West Covina', address='427 Plaza Dr West Covina, CA 91790 US', latitude=Decimal('34.071107299999994'), longitude=Decimal('-117.9327713'))
Row(state='California', location='West Sacramento', address='775 Ikea Ct Ste 100 West Sacramento, CA 95605 US', latitude=Decimal('38.5899901'), longitude=Decimal('-121.54964199999999'))
Row(state='California', location='Westlake Village', address='5754 Lindero Canyon Rd Westlake Village, CA 91362 US', latitude=Decimal('34.15371791770557'), longitude=Decimal('-118.79654041226877'))
Row(state='California', location='Westminster', address='6777 Westminster Blvd Ste A Westminster, CA 92683 US', latitude=Decimal('33.759404167070336'), longitude=Decimal('-118.00757723282072'))
Row(state='California', location='Whittier', address='15528 Whittier Blvd Unit A Whittier, CA 90603 US', latitude=Decimal('33.94439989978713'), longitude=Decimal('-117.99482644846209'))
Row(state='California', location='Woodland Hills', address='6443 Canoga Ave Woodland Hills, CA 91367 US', latitude=Decimal('34.187712'), longitude=Decimal('-118.5980033'))
Row(state='California', location='Yuba City', address='1005 Gray Ave Yuba City, CA 95991 US', latitude=Decimal('39.1425828'), longitude=Decimal('-121.6297616'))
Row(state='Michigan', location='Adrian', address='1421 S Main St Unit C Adrian, MI 49221 US', latitude=Decimal('41.8757218'), longitude=Decimal('-84.0425636'))
Row(state='Michigan', location='Allen Park', address='3125 Fairlane Dr Allen Park, MI 48101 US', latitude=Decimal('42.28295078426496'), longitude=Decimal('-83.20371498668248'))
Row(state='Michigan', location='Ann Arbor', address='858 Briarwood Cir Ste E Ann Arbor, MI 48108 US', latitude=Decimal('42.2406456'), longitude=Decimal('-83.74529199999998'))
Row(state='Michigan', location='Bloomfield Hills', address='2100 S Telegraph Rd Bloomfield Hills, MI 48302 US', latitude=Decimal('42.60749877412864'), longitude=Decimal('-83.3003020595072'))
Row(state='Michigan', location='Brighton', address='8599 W Grand River Ave Brighton, MI 48116 US', latitude=Decimal('42.5409873'), longitude=Decimal('-83.78590229999999'))
Row(state='Michigan', location='Canton', address='42404 Ford Road Canton, MI 48187 US', latitude=Decimal('42.323000118158824'), longitude=Decimal('-83.4595837374344'))
Row(state='Michigan', location='Chesterfield', address='27810 23 Mile Rd Chesterfield, MI 48051 US', latitude=Decimal('42.674108200000006'), longitude=Decimal('-82.8295619'))
Row(state='Michigan', location='East Lansing', address='539 E Grand River Ave East Lansing, MI 48823 US', latitude=Decimal('42.733737080920775'), longitude=Decimal('-84.47725643741705'))
Row(state='Michigan', location='Flint', address='4485 Miller Rd Flint, MI 48507 US', latitude=Decimal('42.97665470869868'), longitude=Decimal('-83.76849867528624'))
Row(state='Michigan', location='Grand Rapids', address='6333 Kalamazoo Ave SE Ste 450 Grand Rapids, MI 49508 US', latitude=Decimal('42.8492001'), longitude=Decimal('-85.62589140000001'))
Row(state='Michigan', location='Grandville', address='3070 44th St SW Grandville, MI 49418 US', latitude=Decimal('42.884316399999996'), longitude=Decimal('-85.73975390000001'))
Row(state='Michigan', location='Holland', address='12365 James St Holland, MI 49424 US', latitude=Decimal('42.81533812611769'), longitude=Decimal('-86.0891220488768'))
Row(state='Michigan', location='Kalamazoo', address='5363B W Main St Kalamazoo, MI 49009 US', latitude=Decimal('42.295395056617814'), longitude=Decimal('-85.65528129691847'))
Row(state='Michigan', location='Kentwood', address='3610 28th St SE Kentwood, MI 49512 US', latitude=Decimal('42.91201220000001'), longitude=Decimal('-85.5782809'))
Row(state='Michigan', location='Lansing', address='5805 W Saginaw Hwy Lansing, MI 48917 US', latitude=Decimal('42.740216545945785'), longitude=Decimal('-84.63416705456821'))
Row(state='Michigan', location='Madison Heights', address='32 E 14 Mile Rd Madison Heights, MI 48071 US', latitude=Decimal('42.533888815725625'), longitude=Decimal('-83.10599656385347'))
Row(state='Michigan', location='Mt Pleasant', address='1720 S Mission St Mt Pleasant, MI 48858 US', latitude=Decimal('43.585297'), longitude=Decimal('-84.76794100000001'))
Row(state='Michigan', location='Northville', address='18885 Traditions Dr Northville, MI 48168 US', latitude=Decimal('42.42403597052689'), longitude=Decimal('-83.4337969256959'))
Row(state='Michigan', location='Novi', address='43345 Crescent Blvd Novi, MI 48375 US', latitude=Decimal('42.4836793104075'), longitude=Decimal('-83.47418975594854'))
Row(state='Michigan', location='Orion', address='4921 S Baldwin Rd Orion, MI 48359 US', latitude=Decimal('42.709054849999966'), longitude=Decimal('-83.30657175428178'))
Row(state='Michigan', location='Portage', address='5964 S Westnedge Ave Portage, MI 49002 US', latitude=Decimal('42.23062'), longitude=Decimal('-85.590182'))
Row(state='Michigan', location='Rochester Hills', address='84 N Adams Rd Rochester Hills, MI 48309 US', latitude=Decimal('42.681622220214756'), longitude=Decimal('-83.19252816287495'))
Row(state='Michigan', location='Roseville', address='32463 Gratiot Ave Roseville, MI 48066 US', latitude=Decimal('42.53585492279821'), longitude=Decimal('-82.91247584458478'))
Row(state='Michigan', location='Royal Oak', address='32824 Woodward Ave Royal Oak, MI 48073 US', latitude=Decimal('42.530704899999996'), longitude=Decimal('-83.19794590000001'))
Row(state='Michigan', location='Saginaw', address='2721 Tittabawassee Rd Ste 1 Saginaw, MI 48604 US', latitude=Decimal('43.47945585000001'), longitude=Decimal('-83.97004699907382'))
Row(state='Michigan', location='Shelby Township', address='13488 23 Mile Rd Shelby Township, MI 48315 US', latitude=Decimal('42.669784299999996'), longitude=Decimal('-82.9957531'))
Row(state='Michigan', location='Southfield', address='28644 Telegraph Rd Space C-9 Southfield, MI 48034 US', latitude=Decimal('42.49780847319419'), longitude=Decimal('-83.28422197700105'))
Row(state='Michigan', location='Sterling Heights', address='35394 Van Dyke Ave Sterling Heights, MI 48312 US', latitude=Decimal('42.554332200000005'), longitude=Decimal('-83.02897449999998'))
Row(state='Michigan', location='Taylor', address='23111 Eureka Rd Taylor, MI 48180 US', latitude=Decimal('42.197173600000006'), longitude=Decimal('-83.257584'))
Row(state='Michigan', location='Troy', address='3129 Crooks Rd Troy, MI 48084 US', latitude=Decimal('42.56359331411894'), longitude=Decimal('-83.16820232050236'))
Row(state='Michigan', location='Warren', address='30229 Mound Rd Warren, MI 48092 US', latitude=Decimal('42.514304475696825'), longitude=Decimal('-83.04767732113135'))
Row(state='Michigan', location='West Bloomfield', address='6753 Orchard Lake Rd West Bloomfield, MI 48322 US', latitude=Decimal('42.539072404298956'), longitude=Decimal('-83.35992577944512'))
Row(state='Michigan', location='Woodhaven', address='23061 Allen Rd Woodhaven, MI 48183 US', latitude=Decimal('42.140218390888315'), longitude=Decimal('-83.22505900596883'))
Row(state='Wisconsin', location='Appleton', address='W3198 County Road KK Ste A Appleton, WI 54915 US', latitude=Decimal('44.2441472'), longitude=Decimal('-88.34872940000001'))
Row(state='Wisconsin', location='Ashwaubenon', address='2388 S Oneida St Ste 300 Ashwaubenon, WI 54304 US', latitude=Decimal('44.486816001842136'), longitude=Decimal('-88.06757415858095'))
Row(state='Wisconsin', location='Brookfield', address='3705 N 124th St Ste 200 Brookfield, WI 53005 US', latitude=Decimal('43.085648299999995'), longitude=Decimal('-88.06670679999999'))
Row(state='Wisconsin', location='Eau Claire', address='4738 Golf Rd Eau Claire, WI 54701 US', latitude=Decimal('44.774584610202254'), longitude=Decimal('-91.4380027332845'))
Row(state='Wisconsin', location='Grand Chute', address='111 N Mall Dr Grand Chute, WI 54913 US', latitude=Decimal('44.26255310097911'), longitude=Decimal('-88.47014451149886'))
Row(state='Wisconsin', location='Hales Corners', address='5794 S 108th St Hales Corners, WI 53130 US', latitude=Decimal('42.93875895742385'), longitude=Decimal('-88.04771488824603'))
Row(state='Wisconsin', location='Hudson', address='1021 Pearson Dr Hudson, WI 54016 US', latitude=Decimal('44.95937312944859'), longitude=Decimal('-92.72082119118721'))
Row(state='Wisconsin', location='Janesville', address='3515 Milton Ave Ste 105 Janesville, WI 53545 US', latitude=Decimal('42.723734'), longitude=Decimal('-88.995163'))
Row(state='Wisconsin', location='Madison', address='7066 Sligo Dr Madison, WI 53717 US', latitude=Decimal('43.061587200000005'), longitude=Decimal('-89.5049495'))
Row(state='Wisconsin', location='Menomonee Falls', address='W176N9360 Rivercrest Dr Menomonee Falls, WI 53051 US', latitude=Decimal('43.187807600000006'), longitude=Decimal('-88.12779689999998'))
Row(state='Wisconsin', location='Middleton', address='8422 Old Sauk Rd Middleton, WI 53562 US', latitude=Decimal('43.07534427580063'), longitude=Decimal('-89.52871060921001'))
Row(state='Wisconsin', location='Milwaukee', address='600 E Ogden Ave Milwaukee, WI 53202 US', latitude=Decimal('43.04836219466346'), longitude=Decimal('-87.90452498470785'))
Row(state='Wisconsin', location='Mount Pleasant', address='5720 Washington Ave Mount Pleasant, WI 53406 US', latitude=Decimal('42.719581700000006'), longitude=Decimal('-87.84925129999999'))
Row(state='Wisconsin', location='Pleasant Prairie', address='9370 76th St # B Pleasant Prairie, WI 53158 US', latitude=Decimal('42.56589181385271'), longitude=Decimal('-87.92104782640665'))
Row(state='Wisconsin', location='Wauwatosa', address='2711 N Mayfair Rd Ste A Wauwatosa, WI 53222 US', latitude=Decimal('43.0677232194901'), longitude=Decimal('-88.04822244204952'))
Row(state='Vermont', location='Burlington', address='580 Shelburne Rd Ste 14B Burlington, VT 05401 US', latitude=Decimal('44.448782'), longitude=Decimal('-73.208072'))
Row(state='Vermont', location='Rutland', address='37 N Main St Rutland, VT 05701 US', latitude=Decimal('43.61089260000001'), longitude=Decimal('-72.97304559999998'))
Row(state='Oregon', location='Beaverton', address='3380 SW Cedar Hills Blvd Beaverton, OR 97005 US', latitude=Decimal('45.495278690178935'), longitude=Decimal('-122.8089985163241'))
Row(state='Oregon', location='Bend', address='222 NE Emerson Ave Ste 100 Bend, OR 97701 US', latitude=Decimal('44.055194882872016'), longitude=Decimal('-121.3028888288013'))
Row(state='Oregon', location='Corvallis', address='2501 NW Monroe Ave Corvallis, OR 97330 US', latitude=Decimal('44.56903822951666'), longitude=Decimal('-123.27912404968548'))
Row(state='Oregon', location='Eugene', address='460 Coburg Rd Ste 302 Eugene, OR 97401 US', latitude=Decimal('44.0678374'), longitude=Decimal('-123.07236809999999'))
Row(state='Oregon', location='Gresham', address='2065 NE Burnside Rd Gresham, OR 97030 US', latitude=Decimal('45.4997749'), longitude=Decimal('-122.41107009999999'))
Row(state='Oregon', location='Happy Valley', address='17015 SE Sunnyside Rd Ste 110 Happy Valley, OR 97015 US', latitude=Decimal('45.42707305701989'), longitude=Decimal('-122.48891848836183'))
Row(state='Oregon', location='Hillsboro', address='4530 NE Cornell Rd Hillsboro, OR 97124 US', latitude=Decimal('45.53295689410436'), longitude=Decimal('-122.93510634598069'))
Row(state='Oregon', location='Keizer', address='6198 Ulali Dr NE Keizer, OR 97303 US', latitude=Decimal('45.009895553396'), longitude=Decimal('-122.99643727324178'))
Row(state='Oregon', location='Lake Oswego', address='8 Centerpointe Dr Ste B Lake Oswego, OR 97035 US', latitude=Decimal('45.420446180367726'), longitude=Decimal('-122.73920274099815'))
Row(state='Oregon', location='Medford', address='7 Rossanley Dr Medford, OR 97501 US', latitude=Decimal('42.34457586463228'), longitude=Decimal('-122.88144804598062'))
Row(state='Oregon', location='Portland', address='9687 NE Cascades Pkwy Portland, OR 97220 US', latitude=Decimal('45.57538752040823'), longitude=Decimal('-122.56408377729817'))
Row(state='Oregon', location='Salem', address='890 Lancaster Dr NE Salem, OR 97301 US', latitude=Decimal('44.941904680899'), longitude=Decimal('-122.98263703247318'))
Row(state='Oregon', location='Sherwood', address='21332 SW Langer Farms Pkwy Ste 118 Sherwood, OR 97140 US', latitude=Decimal('45.36625590709739'), longitude=Decimal('-122.83590388720188'))
Row(state='Oregon', location='Springfield', address='2860 Gateway St Ste MT200 Springfield, OR 97477 US', latitude=Decimal('44.07341037973775'), longitude=Decimal('-123.04315935541962'))
Row(state='Oregon', location='Tualatin', address='7003 SW Nyberg St Tualatin, OR 97062 US', latitude=Decimal('45.38301188555018'), longitude=Decimal('-122.74820033098564'))
Row(state='Oregon', location='Wilsonville', address='29991 SW Town Center Loop W Ste A Wilsonville, OR 97070 US', latitude=Decimal('45.30318867862103'), longitude=Decimal('-122.7662286309023'))
Row(state='Oregon', location='Woodburn', address='105 Arney Rd Woodburn, OR 97071 US', latitude=Decimal('45.15152601182006'), longitude=Decimal('-122.88454562666914'))
Row(state='Louisiana', location='Baton Rouge', address='101 W State St Baton Rouge, LA 70802 US', latitude=Decimal('30.41797442771939'), longitude=Decimal('-91.17676362822435'))
Row(state='Louisiana', location='Bossier City', address='2610 Airline Dr 400 Bossier City, LA 71111 US', latitude=Decimal('32.550204796301486'), longitude=Decimal('-93.7087814184256'))
Row(state='Louisiana', location='Gonzales', address='2410 Tanger Blvd Gonzales, LA 70737 US', latitude=Decimal('30.212082799999997'), longitude=Decimal('-90.95007159999999'))
Row(state='Louisiana', location='Harahan', address='1208 S Clearview Pkwy Ste A Harahan, LA 70123 US', latitude=Decimal('29.960016633840688'), longitude=Decimal('-90.18447917207277'))
Row(state='Louisiana', location='Lafayette', address='4231 Ambassador Caffery Pkwy Ste 101 Lafayette, LA 70508 US', latitude=Decimal('30.161787035053273'), longitude=Decimal('-92.05396746288011'))
Row(state='Louisiana', location='Mandeville', address='3810 Highway 22 Ste A Mandeville, LA 70471 US', latitude=Decimal('30.3944473'), longitude=Decimal('-90.092254'))
Row(state='Louisiana', location='Metairie', address='3600 Veterans Memorial Blvd Metairie, LA 70002 US', latitude=Decimal('30.003046493631754'), longitude=Decimal('-90.16247630295788'))
Row(state='Louisiana', location='New Orleans', address='2801 Magazine St Ste 2 New Orleans, LA 70115 US', latitude=Decimal('29.926244300000004'), longitude=Decimal('-90.0830885'))
Row(state='Louisiana', location='Shreveport', address='7030 Youree Dr Shreveport, LA 71105 US', latitude=Decimal('32.44137301630907'), longitude=Decimal('-93.71825519565478'))
Row(state='Louisiana', location='Slidell', address='400 Town Center Pkwy Slidell, LA 70458 US', latitude=Decimal('30.2686413'), longitude=Decimal('-89.75959590000001'))
Row(state='Washington', location='Bellevue', address='4000 Factoria Blvd SE Bellevue, WA 98006 US', latitude=Decimal('47.57440487584369'), longitude=Decimal('-122.16894466964341'))
Row(state='Washington', location='Bellingham', address='4 Bellis Fair Pkwy Bellingham, WA 98226 US', latitude=Decimal('48.785206'), longitude=Decimal('-122.48937409999999'))
Row(state='Washington', location='Bonney Lake', address='20416 98th Street East Bonney Lake, WA 98391 US', latitude=Decimal('47.1679541'), longitude=Decimal('-122.1558092'))
Row(state='Washington', location='Burlington', address='1753 S Burlington Blvd Ste 106 Burlington, WA 98233 US', latitude=Decimal('48.45333193401946'), longitude=Decimal('-122.33583993926949'))
Row(state='Washington', location='Everett', address='515 SE Everett Mall Way Everett, WA 98208 US', latitude=Decimal('47.909533886961924'), longitude=Decimal('-122.22527878680063'))
Row(state='Washington', location='Federal Way', address='31827 Pacific Hwy S Ste A Federal Way, WA 98003 US', latitude=Decimal('47.316285712616036'), longitude=Decimal('-122.31384686989843'))
Row(state='Washington', location='Issaquah', address='775 NW Gilman Blvd Issaquah, WA 98027 US', latitude=Decimal('47.54334533'), longitude=Decimal('-122.05014117'))
Row(state='Washington', location='Kennewick', address='1102 N Columbia Center Blvd Ste C Kennewick, WA 99336 US', latitude=Decimal('46.221200300454356'), longitude=Decimal('-119.2231980926424'))
Row(state='Washington', location='Kent', address='512 Ramsay Way Ste 101 Kent, WA 98032 US', latitude=Decimal('47.385287'), longitude=Decimal('-122.234995'))
Row(state='Washington', location='Kirkland', address='12530 Totem Lake Blvd NE Ste 136 Kirkland, WA 98034 US', latitude=Decimal('47.711843934092386'), longitude=Decimal('-122.18179373743442'))
Row(state='Washington', location='Lacey', address='1177 Marvin Rd NE Lacey, WA 98516 US', latitude=Decimal('47.057851908666365'), longitude=Decimal('-122.76505570742631'))
Row(state='Washington', location='Lakewood', address='10427 Gravelly Lake Dr SW Ste A Lakewood, WA 98499 US', latitude=Decimal('47.1619458'), longitude=Decimal('-122.51853919999999'))
Row(state='Washington', location='Lynnwood', address='4120 196th St SW Ste 150 Lynnwood, WA 98036 US', latitude=Decimal('47.820684298533685'), longitude=Decimal('-122.28900541104507'))
Row(state='Washington', location='Marysville', address='17103 28th Dr NE Ste 101 Marysville, WA 98271 US', latitude=Decimal('48.15114826278244'), longitude=Decimal('-122.19128554232788'))
Row(state='Washington', location='Olympia', address='625 Black Lake Blvd SW Ste J-22 Olympia, WA 98501 US', latitude=Decimal('47.041758204389666'), longitude=Decimal('-122.93446364146472'))
Row(state='Washington', location='Puyallup', address='12011 Meridian E Puyallup, WA 98373 US', latitude=Decimal('47.14671834653428'), longitude=Decimal('-122.29253940082396'))
Row(state='Washington', location='Redmond', address='17875 Redmond Way Ste 170 Redmond, WA 98052 US', latitude=Decimal('47.667253499999994'), longitude=Decimal('-122.10236429999999'))
Row(state='Washington', location='Renton', address='439 Rainier Ave S Ste B Renton, WA 98057 US', latitude=Decimal('47.477539657475575'), longitude=Decimal('-122.2162078618598'))
Row(state='Washington', location='Richland', address='2673 Queensgate Dr Richland, WA 99352 US', latitude=Decimal('46.25855108350215'), longitude=Decimal('-119.30982174273115'))
Row(state='Washington', location='Sammamish', address='22704 SE 4th St Ste 210 Sammamish, WA 98074 US', latitude=Decimal('47.60582599427747'), longitude=Decimal('-122.03596036599087'))
Row(state='Washington', location='Seattle', address='4730 California Ave SW Ste A Seattle, WA 98116 US', latitude=Decimal('47.560207'), longitude=Decimal('-122.3866142'))
Row(state='Washington', location='Silverdale', address='11065 Pacific Crest Pl NW Ste B101 Silverdale, WA 98383 US', latitude=Decimal('47.6631689'), longitude=Decimal('-122.6960508'))
Row(state='Washington', location='Spokane', address='930 N Division St Spokane, WA 99202 US', latitude=Decimal('47.665820115658654'), longitude=Decimal('-117.41073624723872'))
Row(state='Washington', location='Tacoma', address='4502 S Steele St Ste 159 Tacoma, WA 98409 US', latitude=Decimal('47.216092258588574'), longitude=Decimal('-122.46866955763954'))
Row(state='Washington', location='Tukwila', address='2800 Southcenter Mall Ste 2 Tukwila, WA 98188 US', latitude=Decimal('47.458779'), longitude=Decimal('-122.258422'))
Row(state='Washington', location='Vancouver', address='915 SE 164th Ave Ste 100 Vancouver, WA 98683 US', latitude=Decimal('45.613812038745785'), longitude=Decimal('-122.50363044107195'))
Row(state='Washington', location='Wenatchee', address='1121 N Mission St Wenatchee, WA 98801 US', latitude=Decimal('47.43769482202301'), longitude=Decimal('-120.32356545711987'))
Row(state='Washington', location='Woodinville', address='13780 NE 175th St Ste 104 Woodinville, WA 98072 US', latitude=Decimal('47.754703386811904'), longitude=Decimal('-122.15576085484457'))
Row(state='Idaho', location='Boise', address='7610 W State Street Suite 110 Boise, ID 83714 US', latitude=Decimal('43.671260920411406'), longitude=Decimal('-116.28303340613422'))
Row(state='Idaho', location='Meridian', address='2126 N Eagle Rd Ste 100 Meridian, ID 83646 US', latitude=Decimal('43.6241636'), longitude=Decimal('-116.3537875'))
Row(state='Utah', location='Cottonwood Heights', address='6924 S Park Centre Dr Cottonwood Heights, UT 84121 US', latitude=Decimal('40.6256566076317'), longitude=Decimal('-111.8515151865082'))
Row(state='Utah', location='Layton', address='1035 W Antelope Dr Unit 2 Layton, UT 84041 US', latitude=Decimal('41.0887238'), longitude=Decimal('-111.9847553'))
Row(state='Utah', location='Lehi', address='3601 N Digital Dr Ste 202 Lehi, UT 84043 US', latitude=Decimal('40.4320963'), longitude=Decimal('-111.88837099999999'))
Row(state='Utah', location='Murray', address='5141 S State St Murray, UT 84107 US', latitude=Decimal('40.6597349'), longitude=Decimal('-111.88784509999999'))
Row(state='Utah', location='Orem', address='715 E University Pkwy Orem, UT 84097 US', latitude=Decimal('40.27351681765806'), longitude=Decimal('-111.67868003968486'))
Row(state='Utah', location='Riverdale', address='849 W Riverdale Rd Riverdale, UT 84405 US', latitude=Decimal('41.1782739'), longitude=Decimal('-111.99946829999999'))
Row(state='Utah', location='Saint George', address='231 Red Cliffs Dr 22 Saint George, UT 84790 US', latitude=Decimal('37.1118491'), longitude=Decimal('-113.55440530000001'))
Row(state='Utah', location='Salt Lake City', address='734 E 400 S Salt Lake City, UT 84102 US', latitude=Decimal('40.76048'), longitude=Decimal('-111.86985'))
Row(state='Utah', location='Sandy', address='10387 S State St Sandy, UT 84070 US', latitude=Decimal('40.5626127'), longitude=Decimal('-111.89044879999999'))
Row(state='Utah', location='West Bountiful', address='135 N 500 W Ste A West Bountiful, UT 84010 US', latitude=Decimal('40.890837055458974'), longitude=Decimal('-111.89262856157568'))
Row(state='Colorado', location='Arvada', address='8797 Wadsworth Blvd Arvada, CO 80003 US', latitude=Decimal('39.8561260657296'), longitude=Decimal('-105.08244000828381'))
Row(state='Colorado', location='Aurora', address='6710 S Cornerstar Way Ste A Aurora, CO 80016 US', latitude=Decimal('39.5945685'), longitude=Decimal('-104.80639599999999'))
Row(state='Colorado', location='Boulder', address='919 Pearl St Boulder, CO 80302 US', latitude=Decimal('40.017374992177366'), longitude=Decimal('-105.28339114106359'))
Row(state='Colorado', location='Brighton', address='2046 Prairie Center Pkwy Brighton, CO 80601 US', latitude=Decimal('39.9570906'), longitude=Decimal('-104.7758057'))
Row(state='Colorado', location='Castle Rock', address='5642 Allen Way Ste 104 Castle Rock, CO 80108 US', latitude=Decimal('39.41447192362294'), longitude=Decimal('-104.86400426898176'))
Row(state='Colorado', location='Centennial', address='8255 S Chester St Suite 100 Centennial, CO 80112 US', latitude=Decimal('39.56723688545382'), longitude=Decimal('-104.88050550398464'))
Row(state='Colorado', location='Colorado Springs', address='895 N Academy Blvd Colorado Springs, CO 80909 US', latitude=Decimal('38.845470899999995'), longitude=Decimal('-104.7565472'))
Row(state='Colorado', location='Commerce City', address='5988 Dahlia St Commerce City, CO 80022 US', latitude=Decimal('39.804007450899896'), longitude=Decimal('-104.9308275472387'))
Row(state='Colorado', location='Denver', address='820 S Monaco Pkwy Unit 1B Denver, CO 80224 US', latitude=Decimal('39.70179929627504'), longitude=Decimal('-104.9124563696248'))
Row(state='Colorado', location='Englewood', address='333 W Hampden Ave Ste 110 Englewood, CO 80110 US', latitude=Decimal('39.65358492458046'), longitude=Decimal('-104.99242666258293'))
Row(state='Colorado', location='Federal Heights', address='10320 Federal Blvd Unit 100 Federal Heights, CO 80260 US', latitude=Decimal('39.8842261'), longitude=Decimal('-105.02470829999999'))
Row(state='Colorado', location='Fort Collins', address='649 S College Ave Ste A Fort Collins, CO 80525 US', latitude=Decimal('40.57830131811463'), longitude=Decimal('-105.0774329656282'))
Row(state='Colorado', location='Grand Junction', address='2504 Highway 6 And 50 Ste 300 Grand Junction, CO 81505 US', latitude=Decimal('39.083436'), longitude=Decimal('-108.58792749999999'))
Row(state='Colorado', location='Greeley', address='807 17th St Ste A Greeley, CO 80631 US', latitude=Decimal('40.41203572235011'), longitude=Decimal('-104.69148192212143'))
Row(state='Colorado', location='Greenwood Village', address='8000 E Belleview Ave Ste F20 Greenwood Village, CO 80111 US', latitude=Decimal('39.623731229303054'), longitude=Decimal('-104.89606705286793'))
Row(state='Colorado', location='Highlands Ranch', address='9579 S University Blvd Lot 3A Highlands Ranch, CO 80126 US', latitude=Decimal('39.5424541'), longitude=Decimal('-104.9399959'))
Row(state='Colorado', location='Lafayette', address='548 W South Boulder Rd Unit D Lafayette, CO 80026 US', latitude=Decimal('39.986385664405816'), longitude=Decimal('-105.09794396611215'))
Row(state='Colorado', location='Lakewood', address='7355 W Colfax Ave Unit 103 Lakewood, CO 80214 US', latitude=Decimal('39.74056109655933'), longitude=Decimal('-105.07830536467428'))
Row(state='Colorado', location='Littleton', address='8501 W Bowles Ave Ste 2020 Littleton, CO 80123 US', latitude=Decimal('39.61190845208597'), longitude=Decimal('-105.09567326694186'))
Row(state='Colorado', location='Lone Tree', address='9500 Heritage Hills Cir Ste 700 Lone Tree, CO 80124 US', latitude=Decimal('39.5369564'), longitude=Decimal('-104.87941699999999'))
Row(state='Colorado', location='Longmont', address='1708 Main Street Longmont, CO 80501 US', latitude=Decimal('40.189207'), longitude=Decimal('-105.101803'))
Row(state='Colorado', location='Louisville', address='375 McCaslin Blvd Ste D Louisville, CO 80027 US', latitude=Decimal('39.96621596945101'), longitude=Decimal('-105.16397033843792'))
Row(state='Colorado', location='Loveland', address='1569 Fall River Dr Ste 105 Loveland, CO 80538 US', latitude=Decimal('40.4083052'), longitude=Decimal('-105.00772490000001'))
Row(state='Colorado', location='Parker', address='18701 E Mainstreet Ste 1 Parker, CO 80134 US', latitude=Decimal('39.518695034550845'), longitude=Decimal('-104.77040223558195'))
Row(state='Colorado', location='Pueblo', address='3230 N Elizabeth St Pueblo, CO 81008 US', latitude=Decimal('38.303292'), longitude=Decimal('-104.614979'))
Row(state='Colorado', location='Silverthorne', address='247-C Rainbow St Unit G290 Silverthorne, CO 80498 US', latitude=Decimal('39.630287419244226'), longitude=Decimal('-106.07142220468808'))
Row(state='Colorado', location='Thornton', address='951 E 120th Ave Unit A Thornton, CO 80233 US', latitude=Decimal('39.91436710001901'), longitude=Decimal('-104.97505228674999'))
Row(state='Colorado', location='Westminster', address='7303 Federal Blvd Unit 1 Westminster, CO 80030 US', latitude=Decimal('39.8288063'), longitude=Decimal('-105.02550249999999'))
Row(state='Colorado', location='Wheat Ridge', address='3294 Youngfield St Ste A Wheat Ridge, CO 80033 US', latitude=Decimal('39.7631512'), longitude=Decimal('-105.1400656'))
Row(state='Minnesota', location='Apple Valley', address='7638 150th St W Apple Valley, MN 55124 US', latitude=Decimal('44.7311427'), longitude=Decimal('-93.2193797'))
Row(state='Minnesota', location='Baxter', address='14203 Edgewood Dr. Baxter, MN 56425 US', latitude=Decimal('46.3577455'), longitude=Decimal('-94.2449344'))
Row(state='Minnesota', location='Blaine', address='599 Northtown Dr NE Ste 500 Blaine, MN 55434 US', latitude=Decimal('45.12726283316982'), longitude=Decimal('-93.25673739899048'))
Row(state='Minnesota', location='Bloomington', address='322 S Avenue Bloomington, MN 55425 US', latitude=Decimal('44.85429017996104'), longitude=Decimal('-93.24178026752527'))
Row(state='Minnesota', location='Brooklyn Center', address='5711 Xerxes Ave N Ste K Brooklyn Center, MN 55430 US', latitude=Decimal('45.05913001545585'), longitude=Decimal('-93.32097112656119'))
Row(state='Minnesota', location='Brooklyn Park', address='7631 Jolly Ln Brooklyn Park, MN 55428 US', latitude=Decimal('45.09413542831285'), longitude=Decimal('-93.38319735950716'))
Row(state='Minnesota', location='Burnsville', address='728 County Road 42 W Burnsville, MN 55337 US', latitude=Decimal('44.747526050058624'), longitude=Decimal('-93.28876236879'))
Row(state='Minnesota', location='Champlin', address='11209 Aquila Dr N Champlin, MN 55316 US', latitude=Decimal('45.158305299999995'), longitude=Decimal('-93.39080940000001'))
Row(state='Minnesota', location='Chanhassen', address='560 W 79th St Chanhassen, MN 55317 US', latitude=Decimal('44.8593644'), longitude=Decimal('-93.5344897'))
Row(state='Minnesota', location='Chaska', address='1112 Hazeltine Blvd Chaska, MN 55318 US', latitude=Decimal('44.8344945'), longitude=Decimal('-93.6010504'))
Row(state='Minnesota', location='Columbia Heights', address='5200 Central Ave NE Columbia Heights, MN 55421 US', latitude=Decimal('45.06269662542545'), longitude=Decimal('-93.2483022476152'))
Row(state='Minnesota', location='Coon Rapids', address='3455 River Rapids Dr NW Coon Rapids, MN 55448 US', latitude=Decimal('45.198744700000006'), longitude=Decimal('-93.354802'))
Row(state='Minnesota', location='Cottage Grove', address='7180 E Point Douglas Rd S Ste 300 Cottage Grove, MN 55016 US', latitude=Decimal('44.83284673716399'), longitude=Decimal('-92.95762394222167'))
Row(state='Minnesota', location='Crystal', address='5608 W Broadway Ave Crystal, MN 55428 US', latitude=Decimal('45.05518923319603'), longitude=Decimal('-93.3647935732962'))
Row(state='Minnesota', location='Duluth', address='1600 Miller Trunk Hwy Ste F13C Duluth, MN 55811 US', latitude=Decimal('46.803948999999996'), longitude=Decimal('-92.15941600000001'))
Row(state='Minnesota', location='Eagan', address='3324 Promenade Ave Ste 107 Eagan, MN 55121 US', latitude=Decimal('44.83597000810943'), longitude=Decimal('-93.15195867964304'))
Row(state='Minnesota', location='Eden Prairie', address='13250 Technology Dr Eden Prairie, MN 55344 US', latitude=Decimal('44.85922235387682'), longitude=Decimal('-93.44283415990652'))
Row(state='Minnesota', location='Edina', address='6801 York Ave S Edina, MN 55435 US', latitude=Decimal('44.879217784156076'), longitude=Decimal('-93.32052466660014'))
Row(state='Minnesota', location='Elk River', address='18201 Carson Ct NW Elk River, MN 55330 US', latitude=Decimal('45.30126488846267'), longitude=Decimal('-93.55510211717932'))
Row(state='Minnesota', location='Forest Lake', address='107 12th St SW Ste 1 Forest Lake, MN 55025 US', latitude=Decimal('45.278299141635905'), longitude=Decimal('-92.99819927396862'))
Row(state='Minnesota', location='Golden Valley', address='515 Winnetka Ave N Golden Valley, MN 55427 US', latitude=Decimal('44.984406109321846'), longitude=Decimal('-93.3811020313002'))
Row(state='Minnesota', location='Hastings', address='1769 N Frontage Rd Hastings, MN 55033 US', latitude=Decimal('44.738860205232754'), longitude=Decimal('-92.89264836165677'))
Row(state='Minnesota', location='Hopkins', address='786 Mainstreet Hopkins, MN 55343 US', latitude=Decimal('44.92422978165354'), longitude=Decimal('-93.40994774689163'))
Row(state='Minnesota', location='Lakeville', address='17599 Kenwood Trl Ste 100 Lakeville, MN 55044 US', latitude=Decimal('44.694167'), longitude=Decimal('-93.285956'))
Row(state='Minnesota', location='Mankato', address='1851 Madison Ave Ste 100 Mankato, MN 56001 US', latitude=Decimal('44.1662019838046'), longitude=Decimal('-93.9513987582838'))
Row(state='Minnesota', location='Maple Grove', address='9881 Maple Grove Pkwy N Maple Grove, MN 55369 US', latitude=Decimal('45.13359667741938'), longitude=Decimal('-93.47686956717928'))
Row(state='Minnesota', location='Maplewood', address='3095 White Bear Ave N Unit 1 Maplewood, MN 55109 US', latitude=Decimal('45.03555497118576'), longitude=Decimal('-93.01952871536163'))
Row(state='Minnesota', location='Minneapolis', address='800 Washington Ave SE Minneapolis, MN 55414 US', latitude=Decimal('44.97342879999999'), longitude=Decimal('-93.2269503'))
Row(state='Minnesota', location='Minnetonka', address='4717 County Road 101 Minnetonka, MN 55345 US', latitude=Decimal('44.91804001122819'), longitude=Decimal('-93.50243177605478'))
Row(state='Minnesota', location='Oak Park Heights', address='13315 60th St N Oak Park Heights, MN 55082 US', latitude=Decimal('45.035619095416365'), longitude=Decimal('-92.83744054851013'))
Row(state='Minnesota', location='Plymouth', address='3425 Vicksburg Ln N Ste 100 Plymouth, MN 55447 US', latitude=Decimal('45.020567996541274'), longitude=Decimal('-93.4825565384085'))
Row(state='Minnesota', location='Richfield', address='7644 Lyndale Ave S Ste 200 Richfield, MN 55423 US', latitude=Decimal('44.864014789754016'), longitude=Decimal('-93.2888755248307'))
Row(state='Minnesota', location='Rochester', address='3780 Marketplace Dr NW Ste 100 Rochester, MN 55901 US', latitude=Decimal('44.062752800062704'), longitude=Decimal('-92.5000549839492'))
Row(state='Minnesota', location='Rogers', address='13590 Northdale Blvd Ste 300 Rogers, MN 55374 US', latitude=Decimal('45.20067477990776'), longitude=Decimal('-93.55394364418032'))
Row(state='Minnesota', location='Rosemount', address='3390 150th St W Rosemount, MN 55068 US', latitude=Decimal('44.731258428365656'), longitude=Decimal('-93.13323360978876'))
Row(state='Minnesota', location='Roseville', address='860 Rosedale Shopping Ctr Ste 1020 Roseville, MN 55113 US', latitude=Decimal('45.01258217'), longitude=Decimal('-93.17024667'))
Row(state='Minnesota', location='Saint Cloud', address='3959 2nd St S Ste 205 Saint Cloud, MN 56301 US', latitude=Decimal('45.55138656535054'), longitude=Decimal('-94.2062086071806'))
Row(state='Minnesota', location='Saint Paul', address='867 Grand Ave Saint Paul, MN 55105 US', latitude=Decimal('44.9402631'), longitude=Decimal('-93.1365664'))
Row(state='Minnesota', location='Savage', address='14008 Highway 13 S Savage, MN 55378 US', latitude=Decimal('44.74925656534665'), longitude=Decimal('-93.38040927116394'))
Row(state='Minnesota', location='Shakopee', address='8094 Old Carriage Ct Shakopee, MN 55379 US', latitude=Decimal('44.77628680504369'), longitude=Decimal('-93.414112401206'))
Row(state='Minnesota', location='Shoreview', address='1021 Red Fox Rd Ste 100 Shoreview, MN 55126 US', latitude=Decimal('45.058069133687646'), longitude=Decimal('-93.14349836197651'))
Row(state='Minnesota', location='St Louis Park', address='5580 Excelsior Blvd St Louis Park, MN 55416 US', latitude=Decimal('44.931771292059004'), longitude=Decimal('-93.34888706994059'))
Row(state='Minnesota', location='Vadnais Heights', address='925 County Road E E Ste 150 Vadnais Heights, MN 55127 US', latitude=Decimal('45.052019'), longitude=Decimal('-93.063405'))
Row(state='Minnesota', location='Wayzata', address='1313 Wayzata Blvd East Suite 103 Wayzata, MN 55391 US', latitude=Decimal('44.9714535611533'), longitude=Decimal('-93.496676144792'))
Row(state='Minnesota', location='West St Paul', address='1857 Robert St S West St Paul, MN 55118 US', latitude=Decimal('44.89014401517024'), longitude=Decimal('-93.08115496999642'))
Row(state='Minnesota', location='Woodbury', address='9965 Hudson Pl Ste 650 Woodbury, MN 55125 US', latitude=Decimal('44.9446016'), longitude=Decimal('-92.9047127'))
Row(state='Texas', location='Abilene', address='3800 S Clack St Abilene, TX 79606 US', latitude=Decimal('32.40542941283441'), longitude=Decimal('-99.7653590686998'))
Row(state='Texas', location='Addison', address='3771 Belt Line Rd Addison, TX 75001 US', latitude=Decimal('32.9536677216986'), longitude=Decimal('-96.85307685710848'))
Row(state='Texas', location='Allen', address='103 Central Expy N Allen, TX 75013 US', latitude=Decimal('33.10290636848191'), longitude=Decimal('-96.67913171984495'))
Row(state='Texas', location='Amarillo', address='2414 S Georgia St Amarillo, TX 79109 US', latitude=Decimal('35.18870226837888'), longitude=Decimal('-101.86679454799958'))
Row(state='Texas', location='Arlington', address='5001 S Cooper St Ste 125 Arlington, TX 76017 US', latitude=Decimal('32.66463556401658'), longitude=Decimal('-97.13348452047491'))
Row(state='Texas', location='Austin', address='9600 S Interstate 35 Ste S350 Austin, TX 78748 US', latitude=Decimal('30.158401300000005'), longitude=Decimal('-97.7910949'))
Row(state='Texas', location='Baytown', address='4996 Garth Rd Baytown, TX 77521 US', latitude=Decimal('29.779714675711965'), longitude=Decimal('-94.97723263903991'))
Row(state='Texas', location='Beaumont', address='3905 Dowlen Rd Beaumont, TX 77706 US', latitude=Decimal('30.115376300000005'), longitude=Decimal('-94.1692828'))
Row(state='Texas', location='Bedford', address='2100 Airport Fwy Ste 100 Bedford, TX 76022 US', latitude=Decimal('32.83617580000001'), longitude=Decimal('-97.132894'))
Row(state='Texas', location='Carrollton', address='1016 E Hebron Pkwy Ste 144 Carrollton, TX 75010 US', latitude=Decimal('33.020376363661896'), longitude=Decimal('-96.91372275305844'))
Row(state='Texas', location='Cedar Hill', address='398 E FM 1382 Cedar Hill, TX 75104 US', latitude=Decimal('32.59237574017432'), longitude=Decimal('-96.93786072023771'))
Row(state='Texas', location='Cedar Park', address='909 E Whitestone Blvd Ste A Cedar Park, TX 78613 US', latitude=Decimal('30.524908308222976'), longitude=Decimal('-97.81967993878892'))
Row(state='Texas', location='College Station', address='815 University Dr College Station, TX 77840 US', latitude=Decimal('30.622352430522085'), longitude=Decimal('-96.34132144171622'))
Row(state='Texas', location='Colleyville', address='4609 Colleyville Blvd Colleyville, TX 76034 US', latitude=Decimal('32.87808860097605'), longitude=Decimal('-97.15828218398576'))
Row(state='Texas', location='Conroe', address='3085 College Park Dr Conroe, TX 77384 US', latitude=Decimal('30.206359150524715'), longitude=Decimal('-95.46358244662642'))
Row(state='Texas', location='Coppell', address='104 S Denton Tap Rd Ste 100 Coppell, TX 75019 US', latitude=Decimal('32.969023650345356'), longitude=Decimal('-96.9932805689818'))
Row(state='Texas', location='Copperas Cove', address='3018 E Business 190 Ste 300 Copperas Cove, TX 76522 US', latitude=Decimal('31.120283728792483'), longitude=Decimal('-97.86153828362973'))
Row(state='Texas', location='Corinth', address='8201 I-35 E Corinth, TX 75065 US', latitude=Decimal('33.1305398'), longitude=Decimal('-97.03900259999999'))
Row(state='Texas', location='Corpus Christi', address='4938 S Staples St Ste E1 Corpus Christi, TX 78411 US', latitude=Decimal('27.709253000000004'), longitude=Decimal('-97.36811'))
Row(state='Texas', location='Cypress', address='9202 Barker Cypress Rd Ste 145 Cypress, TX 77433 US', latitude=Decimal('29.911806'), longitude=Decimal('-95.685436'))
Row(state='Texas', location='Dallas', address='9291 Garland Rd Ste 120 Dallas, TX 75218 US', latitude=Decimal('32.831647'), longitude=Decimal('-96.7056409'))
Row(state='Texas', location='Deer Park', address='8035 Spencer Hwy Deer Park, TX 77536 US', latitude=Decimal('29.664326179962217'), longitude=Decimal('-95.11553125338109'))
Row(state='Texas', location='Denton', address='2735 W University Dr Ste 1051 Denton, TX 76201 US', latitude=Decimal('33.22937520536596'), longitude=Decimal('-97.16863888007678'))
Row(state='Texas', location='Desoto', address='1001 North Interstate 35E Service Rd Suite 116A Desoto, TX 75115 US', latitude=Decimal('32.6047426'), longitude=Decimal('-96.8254568'))
Row(state='Texas', location='El Paso', address='8889 Gateway Blvd W Ste 2510 El Paso, TX 79925 US', latitude=Decimal('31.770774900000003'), longitude=Decimal('-106.37111509999998'))
Row(state='Texas', location='Euless', address='3010 State Highway 121 Ste 800 Euless, TX 76039 US', latitude=Decimal('32.88010335198053'), longitude=Decimal('-97.09811057323937'))
Row(state='Texas', location='Farmers Branch', address='2427 Valley View Ln Farmers Branch, TX 75234 US', latitude=Decimal('32.9235699'), longitude=Decimal('-96.8988184'))
Row(state='Texas', location='Flower Mound', address='6100 Long Prairie Rd Ste 100 Flower Mound, TX 75028 US', latitude=Decimal('33.06980834463924'), longitude=Decimal('-97.08208366779098'))
Row(state='Texas', location='Fort Bliss', address='1617 Pleasonton Road Ste G-107 Fort Bliss, TX 79906 US', latitude=Decimal('31.817055'), longitude=Decimal('-106.42756000000001'))
Row(state='Texas', location='Fort Hood', address='Fort Hood Shopping Center #105 Fort Hood, TX 76544 US', latitude=Decimal('31.1308526'), longitude=Decimal('-97.7981556'))
Row(state='Texas', location='Fort Worth', address='7100 Blue Mound Rd Fort Worth, TX 76131 US', latitude=Decimal('32.8699575'), longitude=Decimal('-97.3420637'))
Row(state='Texas', location='Friendswood', address='1705 S Friendswood Dr Friendswood, TX 77546 US', latitude=Decimal('29.5080192'), longitude=Decimal('-95.1873161'))
Row(state='Texas', location='Frisco', address='6851 Warren Pkwy Ste 205 Frisco, TX 75034 US', latitude=Decimal('33.1060821'), longitude=Decimal('-96.8254278'))
Row(state='Texas', location='Garland', address='4170 Lavon Dr Ste 130 Garland, TX 75040 US', latitude=Decimal('32.955528125311474'), longitude=Decimal('-96.61685490674593'))
Row(state='Texas', location='Georgetown', address='900 N Austin Ave Ste 102 Georgetown, TX 78626 US', latitude=Decimal('30.649300074746016'), longitude=Decimal('-97.67747302832909'))
Row(state='Texas', location='Granbury', address='321 E US Highway 377 Granbury, TX 76048 US', latitude=Decimal('32.433637723731344'), longitude=Decimal('-97.78478845824331'))
Row(state='Texas', location='Grand Prairie', address='4095 S Carrier Pkwy Grand Prairie, TX 75052 US', latitude=Decimal('32.673794386655544'), longitude=Decimal('-97.0061871619539'))
Row(state='Texas', location='Grapevine', address='2225 E Grapevine Mills Cir Grapevine, TX 76051 US', latitude=Decimal('32.961723'), longitude=Decimal('-97.041844'))
Row(state='Texas', location='Greenville', address='3118 Interstate Highway 30 Greenville, TX 75402 US', latitude=Decimal('33.09599986858919'), longitude=Decimal('-96.1125946919404'))
Row(state='Texas', location='Harker Heights', address='201 E Central Texas Expy Ste 1400 Harker Heights, TX 76548 US', latitude=Decimal('31.072048'), longitude=Decimal('-97.665851'))
Row(state='Texas', location='Harlingen', address='410 Dixieland Rd Harlingen, TX 78552 US', latitude=Decimal('26.18654664102609'), longitude=Decimal('-97.72133967972752'))
Row(state='Texas', location='Houston', address='9102 W Sam Houston Pkwy N Ste 400 Houston, TX 77064 US', latitude=Decimal('29.90381792510919'), longitude=Decimal('-95.55149931717926'))
Row(state='Texas', location='Humble', address='7418 FM 1960 Rd E Humble, TX 77346 US', latitude=Decimal('29.997412779125252'), longitude=Decimal('-95.16401613435858'))
Row(state='Texas', location='Huntsville', address='213 Interstate 45 S Huntsville, TX 77340 US', latitude=Decimal('30.710830814108466'), longitude=Decimal('-95.56625450929756'))
Row(state='Texas', location='Hurst', address='1312 W Pipeline Rd Hurst, TX 76053 US', latitude=Decimal('32.82420770194293'), longitude=Decimal('-97.19987249171619'))
Row(state='Texas', location='Irving', address='8445 N Belt Line Rd Ste 130 Irving, TX 75063 US', latitude=Decimal('32.922099562468574'), longitude=Decimal('-96.99437746686476'))
Row(state='Texas', location='Katy', address='24600 Katy Fwy Katy, TX 77494 US', latitude=Decimal('29.78736833'), longitude=Decimal('-95.79278617'))
Row(state='Texas', location='Lake Worth', address='6547 Lake Worth Blvd Ste 200 Lake Worth, TX 76135 US', latitude=Decimal('32.81027795685641'), longitude=Decimal('-97.43238790674593'))
Row(state='Texas', location='Laredo', address='1211 Del Mar Blvd. Suite #1 Laredo, TX 78041 US', latitude=Decimal('27.573211988479823'), longitude=Decimal('-99.47384388341506'))
Row(state='Texas', location='Lewisville', address='722 W Main St Lewisville, TX 75067 US', latitude=Decimal('33.04606244272976'), longitude=Decimal('-97.01036565459634'))
Row(state='Texas', location='Longview', address='415 E Loop 281 Longview, TX 75605 US', latitude=Decimal('32.54216713054544'), longitude=Decimal('-94.73354164723871'))
Row(state='Texas', location='Lubbock', address='8201 Quaker Ave Unit 102 Lubbock, TX 79424 US', latitude=Decimal('33.5178'), longitude=Decimal('-101.903485'))
Row(state='Texas', location='Mansfield', address='1971 Highway 287 N Ste 125 Mansfield, TX 76063 US', latitude=Decimal('32.595479689621165'), longitude=Decimal('-97.14808758130016'))
Row(state='Texas', location='McAllen', address='7300 N 10th St Ste 30 McAllen, TX 78504 US', latitude=Decimal('26.268536594783782'), longitude=Decimal('-98.21822809325407'))
Row(state='Texas', location='McKinney', address='2811 Craig Dr Ste 100 McKinney, TX 75070 US', latitude=Decimal('33.172934999999995'), longitude=Decimal('-96.641888'))
Row(state='Texas', location='Mesquite', address='1715 N Town East Blvd Ste 100 Mesquite, TX 75150 US', latitude=Decimal('32.81120818583243'), longitude=Decimal('-96.62445162331352'))
Row(state='Texas', location='Midland', address='2820 West Loop 250 North Suite 210 Midland, TX 79705 US', latitude=Decimal('32.03630303209974'), longitude=Decimal('-102.12335287415657'))
Row(state='Texas', location='Missouri City', address='6245 Highway 6 Ste 100 Missouri City, TX 77459 US', latitude=Decimal('29.56457401563837'), longitude=Decimal('-95.56266587907773'))
Row(state='Texas', location='Murphy', address='121 E FM 544 Ste 129 Murphy, TX 75094 US', latitude=Decimal('33.01195958284809'), longitude=Decimal('-96.60931745350695'))
Row(state='Texas', location='Nacogdoches', address='2111 North St Nacogdoches, TX 75965 US', latitude=Decimal('31.623116999999997'), longitude=Decimal('-94.65268499999999'))
Row(state='Texas', location='New Braunfels', address='156 S State Highway 46 Suite A New Braunfels, TX 78130 US', latitude=Decimal('29.701029972887078'), longitude=Decimal('-98.09565250062906'))
Row(state='Texas', location='North Richland Hills', address='9127 Grapevine Hwy Ste 100 North Richland Hills, TX 76180 US', latitude=Decimal('32.853435253660344'), longitude=Decimal('-97.19022933470222'))
Row(state='Texas', location='Odessa', address='3810 E 42nd St Odessa, TX 79762 US', latitude=Decimal('31.8894707'), longitude=Decimal('-102.35033220000001'))
Row(state='Texas', location='Pasadena', address='5759 Fairmont Pkwy Pasadena, TX 77505 US', latitude=Decimal('29.650488'), longitude=Decimal('-95.15264499999999'))
Row(state='Texas', location='Pearland', address='2680 Pearland Pkwy Ste 100 Pearland, TX 77581 US', latitude=Decimal('29.558162313704294'), longitude=Decimal('-95.26174591777362'))
Row(state='Texas', location='Pflugerville', address='2424 FM 685 Ste 300 Pflugerville, TX 78660 US', latitude=Decimal('30.462676284197578'), longitude=Decimal('-97.59858974895587'))
Row(state='Texas', location='Pharr', address='500 N Jackson Rd Ste N1 Pharr, TX 78577 US', latitude=Decimal('26.2023423'), longitude=Decimal('-98.2019228'))
Row(state='Texas', location='Plano', address='6202 W Park Blvd Ste A Plano, TX 75093 US', latitude=Decimal('33.02704160337276'), longitude=Decimal('-96.83295899467657'))
Row(state='Texas', location='Port Arthur', address='2780 Highway 365 D Port Arthur, TX 77640 US', latitude=Decimal('29.944452636428245'), longitude=Decimal('-93.99503633418787'))
Row(state='Texas', location='Red Oak', address='100 Sharaf Ave Suite 104 Red Oak, TX 75154 US', latitude=Decimal('32.532614'), longitude=Decimal('-96.820676'))
Row(state='Texas', location='Richardson', address='283 W Campbell Rd Richardson, TX 75080 US', latitude=Decimal('32.97504255000001'), longitude=Decimal('-96.72105988528484'))
Row(state='Texas', location='Richmond', address='19235 W Bellfort Street Richmond, TX 77407 US', latitude=Decimal('29.6608081'), longitude=Decimal('-95.71937890000001'))
Row(state='Texas', location='Roanoke', address='1347 N. Hwy 377 Roanoke, TX 76262 US', latitude=Decimal('33.017950899999995'), longitude=Decimal('-97.2181475'))
Row(state='Texas', location='Rockwall', address='951 E Interstate 30 Ste 111 Rockwall, TX 75087 US', latitude=Decimal('32.9027785'), longitude=Decimal('-96.4546128'))
Row(state='Texas', location='Round Rock', address='201 University Oaks 1350 & 1360 Round Rock, TX 78665 US', latitude=Decimal('30.556402000000002'), longitude=Decimal('-97.688002'))
Row(state='Texas', location='Rowlett', address='3109 Lakeview Pkwy Rowlett, TX 75088 US', latitude=Decimal('32.90814667492056'), longitude=Decimal('-96.5722597426178'))
Row(state='Texas', location='San Antonio', address='849 E Commerce St 693 San Antonio, TX 78205 US', latitude=Decimal('29.423798243569227'), longitude=Decimal('-98.48435668548252'))
Row(state='Texas', location='San Marcos', address='401 N LBJ Dr San Marcos, TX 78666 US', latitude=Decimal('29.885570732955127'), longitude=Decimal('-97.94103431924809'))
Row(state='Texas', location='Selma', address='14540 Forum Pkwy Selma, TX 78154 US', latitude=Decimal('29.571981'), longitude=Decimal('-98.326297'))
Row(state='Texas', location='Sherman', address='875 Northcreek Dr. Sherman, TX 75090 US', latitude=Decimal('33.68257324861145'), longitude=Decimal('-96.60897835357979'))
Row(state='Texas', location='Southlake', address='3010 E Southlake Blvd # 600 Southlake, TX 76092 US', latitude=Decimal('32.93898401218177'), longitude=Decimal('-97.10398534258414'))
Row(state='Texas', location='Spring', address='9595 Six Pines Dr Ste 1080 Spring, TX 77380 US', latitude=Decimal('30.16431162198162'), longitude=Decimal('-95.4648630923279'))
Row(state='Texas', location='Stafford', address='11249 W Airport Blvd Stafford, TX 77477 US', latitude=Decimal('29.6430097'), longitude=Decimal('-95.575749'))
Row(state='Texas', location='Sugar Land', address='2280 Lone Star Dr Sugar Land, TX 77479 US', latitude=Decimal('29.594050948457106'), longitude=Decimal('-95.6228088116568'))
Row(state='Texas', location='Sunset Valley', address='5400 Brodie Ln Ste 1230 Sunset Valley, TX 78745 US', latitude=Decimal('30.230103000000003'), longitude=Decimal('-97.822291'))
Row(state='Texas', location='Temple', address='3550 S General Bruce Dr Bldg D, Ste 126 Temple, TX 76504 US', latitude=Decimal('31.092525'), longitude=Decimal('-97.385601'))
Row(state='Texas', location='Terrell', address='1396 FM Rd 148 Terrell, TX 75160 US', latitude=Decimal('32.71672431983841'), longitude=Decimal('-96.32569441462029'))
Row(state='Texas', location='Texarkana', address='2502 Richmond Rd Texarkana, TX 75503 US', latitude=Decimal('33.457909905642694'), longitude=Decimal('-94.08770048834322'))
Row(state='Texas', location='Tomball', address='14067 FM 2920 Rd Tomball, TX 77377 US', latitude=Decimal('30.088967598214932'), longitude=Decimal('-95.63465116135956'))
Row(state='Texas', location='Tyler', address='4751 S Broadway Ave Tyler, TX 75703 US', latitude=Decimal('32.297187250499924'), longitude=Decimal('-95.30180172024126'))
Row(state='Texas', location='Waco', address='721 S 4th St Ste 100 Waco, TX 76706 US', latitude=Decimal('31.55189047767147'), longitude=Decimal('-97.12456136840706'))
Row(state='Texas', location='Watauga', address='7604 Denton Hwy Ste 200 Watauga, TX 76148 US', latitude=Decimal('32.882569254134765'), longitude=Decimal('-97.25998003001848'))
Row(state='Texas', location='Waxahachie', address='1440 N Highway 77 Ste 10 Waxahachie, TX 75165 US', latitude=Decimal('32.42422893429829'), longitude=Decimal('-96.83892635712135'))
Row(state='Texas', location='Weatherford', address='106 E Interstate 20 Weatherford, TX 76087 US', latitude=Decimal('32.729249999999986'), longitude=Decimal('-97.787661317791'))
Row(state='Texas', location='Webster', address='304 W Bay Area Blvd Ste 600 Webster, TX 77598 US', latitude=Decimal('29.547680203751835'), longitude=Decimal('-95.1313626060579'))
Row(state='Texas', location='West Lake Hills', address='3300 Bee Caves Rd Ste 670 West Lake Hills, TX 78746 US', latitude=Decimal('30.274678317378054'), longitude=Decimal('-97.79928546198865'))
Row(state='Texas', location='Wichita Falls', address='3910 Wayne Ave Ste 100 Wichita Falls, TX 76308 US', latitude=Decimal('33.870892477475905'), longitude=Decimal('-98.53422405031448'))
Row(state='Arkansas', location='Bentonville', address='2400 SE Walton Blvd Bentonville, AR 72712 US', latitude=Decimal('36.33465562169019'), longitude=Decimal('-94.18511392344068'))
Row(state='Arkansas', location='Conway', address='915 E Oak St Conway, AR 72032 US', latitude=Decimal('35.091087283159816'), longitude=Decimal('-92.41823377546314'))
Row(state='Arkansas', location='Fayetteville', address='550 W Dickson St Fayetteville, AR 72701 US', latitude=Decimal('36.066736703377906'), longitude=Decimal('-94.16612579287356'))
Row(state='Arkansas', location='Little Rock', address='11525 Cantrell Rd Ste 1000 Little Rock, AR 72212 US', latitude=Decimal('34.79354122408321'), longitude=Decimal('-92.40036710778713'))
Row(state='Kentucky', location='Bowling Green', address='3040 Scottsville Rd B Bowling Green, KY 42104 US', latitude=Decimal('36.942810164816045'), longitude=Decimal('-86.42105669386581'))
Row(state='Kentucky', location='Burlington', address='1803 Patrick Dr Burlington, KY 41005 US', latitude=Decimal('39.01899482439892'), longitude=Decimal('-84.69386043712291'))
Row(state='Kentucky', location='Covington', address='501 W Fourth St Covington, KY 41011 US', latitude=Decimal('39.08618131207089'), longitude=Decimal('-84.51897809631255'))
Row(state='Kentucky', location='Crescent Springs', address='525 Buttermilk Pike Crescent Springs, KY 41017 US', latitude=Decimal('39.04748325661645'), longitude=Decimal('-84.57624381473255'))
Row(state='Kentucky', location='Erlanger', address='3100 Dixie Hwy Erlanger, KY 41018 US', latitude=Decimal('39.02139599395538'), longitude=Decimal('-84.58969733408992'))
Row(state='Kentucky', location='Florence', address='7915 Dream St Florence, KY 41042 US', latitude=Decimal('38.98875575553001'), longitude=Decimal('-84.64185621159845'))
Row(state='Kentucky', location='Ft Mitchell', address='3459 Valley Plaza Pkwy Ft Mitchell, KY 41017 US', latitude=Decimal('39.0350269'), longitude=Decimal('-84.53279549999999'))
Row(state='Kentucky', location='Hebron', address='2100 Medical Arts Dr Hebron, KY 41048 US', latitude=Decimal('39.0797356'), longitude=Decimal('-84.70675399999998'))
Row(state='Kentucky', location='Highland Heights', address='2527 Wilson Rd Highland Heights, KY 41076 US', latitude=Decimal('39.03763025632122'), longitude=Decimal('-84.45474513374687'))
Row(state='Kentucky', location='Lexington', address='3565 Nicholasville Rd Ste 935 Lexington, KY 40503 US', latitude=Decimal('37.98760150174309'), longitude=Decimal('-84.52759618560964'))
Row(state='Kentucky', location='Louisville', address='420 S Hurstbourne Pkwy Louisville, KY 40222 US', latitude=Decimal('38.24016569713472'), longitude=Decimal('-85.57749303860567'))
Row(state='Kentucky', location='Newport', address='93 Carothers Rd Newport, KY 41071 US', latitude=Decimal('39.08709908015025'), longitude=Decimal('-84.4779318106646'))
Row(state='Kentucky', location='Union', address='9039 US Highway 42 Ste A Union, KY 41091 US', latitude=Decimal('38.9618492'), longitude=Decimal('-84.6786041'))
Row(state='Maryland', location='Annapolis', address='36 Market Space Annapolis, MD 21401 US', latitude=Decimal('38.97779087252231'), longitude=Decimal('-76.487811240702'))
Row(state='Maryland', location='Aspen Hill', address='13501 Connecticut Ave Aspen Hill, MD 20906 US', latitude=Decimal('39.076738552129896'), longitude=Decimal('-77.08003886717927'))
Row(state='Maryland', location='Baltimore', address='Post Security - Ab Concourse Food Court A/B Terminal Baltimore, MD 21240 US', latitude=Decimal('39.179414200000004'), longitude=Decimal('-76.6710311'))
Row(state='Maryland', location='Bel Air', address='5 Bel Air S Pkwy Bel Air, MD 21014 US', latitude=Decimal('39.495554464617705'), longitude=Decimal('-76.32775172023777'))
Row(state='Maryland', location='Bethesda', address='7600 Old Georgetown Rd Bethesda, MD 20814 US', latitude=Decimal('38.985744744880435'), longitude=Decimal('-77.09621984356862'))
Row(state='Maryland', location='Bowie', address='15500 Excelsior Dr Bowie, MD 20716 US', latitude=Decimal('38.9444834258633'), longitude=Decimal('-76.73512772577453'))
Row(state='Maryland', location='Brandywine', address='16110 Cadillac Dr Brandywine, MD 20613 US', latitude=Decimal('38.669275563140296'), longitude=Decimal('-76.8769860721501'))
Row(state='Maryland', location='Camp Springs', address='3701 Branch Ave 2100 Camp Springs, MD 20748 US', latitude=Decimal('38.840009'), longitude=Decimal('-76.94731'))
Row(state='Maryland', location='Capitol Heights', address='9141 Alaking Ct Ste 111 Capitol Heights, MD 20743 US', latitude=Decimal('38.86975679441893'), longitude=Decimal('-76.84786350684352'))
Row(state='Maryland', location='Chevy Chase', address='4471 Willard Ave Chevy Chase, MD 20815 US', latitude=Decimal('38.96223903263851'), longitude=Decimal('-77.08858530100542'))
Row(state='Maryland', location='Clinton', address='8913 Woodyard Rd Clinton, MD 20735 US', latitude=Decimal('38.767586450079584'), longitude=Decimal('-76.88793641104508'))
Row(state='Maryland', location='College Park', address='7332 Baltimore Ave College Park, MD 20740 US', latitude=Decimal('38.980360533681065'), longitude=Decimal('-76.93895814723874'))
Row(state='Maryland', location='Columbia', address='6181 Old Dobbin Ln Ste 100 Columbia, MD 21045 US', latitude=Decimal('39.20076034147606'), longitude=Decimal('-76.8129621028375'))
Row(state='Maryland', location='Damascus', address='9815 Main St Suite 104 Damascus, MD 20872 US', latitude=Decimal('39.288788000000004'), longitude=Decimal('-77.202484'))
Row(state='Maryland', location='Dunkirk', address='2989 Plaza Dr Dunkirk, MD 20754 US', latitude=Decimal('38.724156305724954'), longitude=Decimal('-76.65890825644874'))
Row(state='Maryland', location='Easton', address='8911 Ocean Gtwy Easton, MD 21601 US', latitude=Decimal('38.7939118853204'), longitude=Decimal('-76.05938578793855'))
Row(state='Maryland', location='Edgewater', address='3046 Solomons Island Rd Ste 200 Edgewater, MD 21037 US', latitude=Decimal('38.943170743453706'), longitude=Decimal('-76.56211548570462'))
Row(state='Maryland', location='Ellicott City', address='9120 Baltimore National Pike Lot A-1 Ellicott City, MD 21042 US', latitude=Decimal('39.2774087'), longitude=Decimal('-76.82592779999999'))
Row(state='Maryland', location='Forest Hill', address='1538 Rock Spring Rd # 200 Forest Hill, MD 21050 US', latitude=Decimal('39.561432399999994'), longitude=Decimal('-76.3730515'))
Row(state='Maryland', location='Forestville', address='3443 Donnell Dr Ste 1 Forestville, MD 20747 US', latitude=Decimal('38.8461879'), longitude=Decimal('-76.8852673'))
Row(state='Maryland', location='Frederick', address='997 W Patrick St Frederick, MD 21702 US', latitude=Decimal('39.416477'), longitude=Decimal('-77.43797099999999'))
Row(state='Maryland', location='Fulton', address='11811 W Market Pl Ste 3 Fulton, MD 20759 US', latitude=Decimal('39.14962293900993'), longitude=Decimal('-76.909739677537'))
Row(state='Maryland', location='Gaithersburg', address='96 Main St Gaithersburg, MD 20878 US', latitude=Decimal('39.12463464422319'), longitude=Decimal('-77.23705384612038'))
Row(state='Maryland', location='Gambrills', address='2503 Brandermill Blvd Gambrills, MD 21054 US', latitude=Decimal('39.03805526142143'), longitude=Decimal('-76.68011710835833'))
Row(state='Maryland', location='Germantown', address='20940 Frederick Rd A Germantown, MD 20876 US', latitude=Decimal('39.203588'), longitude=Decimal('-77.24781999999999'))
Row(state='Maryland', location='Glen Burnie', address='6654 Ritchie Hwy Glen Burnie, MD 21061 US', latitude=Decimal('39.194659167872096'), longitude=Decimal('-76.61408048684524'))
Row(state='Maryland', location='Greenbelt', address='5506 Cherrywood Ln Ste G Greenbelt, MD 20770 US', latitude=Decimal('38.99861628993597'), longitude=Decimal('-76.9121508388173'))
Row(state='Maryland', location='Hagerstown', address='18003 Garland Groh Blvd Hagerstown, MD 21740 US', latitude=Decimal('39.65965626685761'), longitude=Decimal('-77.74470580514492'))
Row(state='Maryland', location='Hanover', address='7049 Arundel Mills Cir Ste C Hanover, MD 21076 US', latitude=Decimal('39.153288699723134'), longitude=Decimal('-76.72458766135958'))
Row(state='Maryland', location='Hunt Valley', address='112 Shawan Rd Unit 2 Hunt Valley, MD 21030 US', latitude=Decimal('39.496663938761024'), longitude=Decimal('-76.65439867974487'))
Row(state='Maryland', location='Hyattsville', address='5501 Baltimore Ave Ste 101 Hyattsville, MD 20781 US', latitude=Decimal('38.955764100274294'), longitude=Decimal('-76.9399147096413'))
Row(state='Maryland', location='Kensington', address='10526 Connecticut Ave Kensington, MD 20895 US', latitude=Decimal('39.02791129999999'), longitude=Decimal('-77.0767603'))
Row(state='Maryland', location='La Plata', address='105 Drury Dr Unit B La Plata, MD 20646 US', latitude=Decimal('38.546985'), longitude=Decimal('-76.9844958'))
Row(state='Maryland', location='Lanham', address='9301 Woodmore Center Dr Ste 514 Lanham, MD 20706 US', latitude=Decimal('38.9213721'), longitude=Decimal('-76.8463498'))
Row(state='Maryland', location='Laurel', address='3353 Corridor Marketplace 200 & 300 Laurel, MD 20724 US', latitude=Decimal('39.097909'), longitude=Decimal('-76.80889'))
Row(state='Maryland', location='Lexington Park', address='22720 Three Notch Rd Lexington Park, MD 20653 US', latitude=Decimal('38.291992971430815'), longitude=Decimal('-76.49364679155077'))
Row(state='Maryland', location='Linthicum Heights', address='1622 W Nursery Rd Linthicum Heights, MD 21090 US', latitude=Decimal('39.2021657'), longitude=Decimal('-76.6836881'))
Row(state='Maryland', location='Lutherville Timonium', address='1830 York Rd Ste K Lutherville Timonium, MD 21093 US', latitude=Decimal('39.43269548465555'), longitude=Decimal('-76.62327665062206'))
Row(state='Maryland', location='Mount Airy', address='439 E Ridgeville Blvd Mount Airy, MD 21771 US', latitude=Decimal('39.3645528'), longitude=Decimal('-77.16010250000001'))
Row(state='Maryland', location='New Carrollton', address='8490 Annapolis Rd New Carrollton, MD 20784 US', latitude=Decimal('38.95776505795216'), longitude=Decimal('-76.86997491794445'))
Row(state='Maryland', location='Ocean City', address='12909 Ocean Gtwy Unit 1 Ocean City, MD 21842 US', latitude=Decimal('38.3358624'), longitude=Decimal('-75.101551'))
Row(state='Maryland', location='Olney', address='3333 Olney Sandy Springs Rd Olney, MD 20832 US', latitude=Decimal('39.15319846069241'), longitude=Decimal('-77.06617600735763'))
Row(state='Maryland', location='Owings Mills', address='10150 Reisterstown Rd 40 Owings Mills, MD 21117 US', latitude=Decimal('39.41260253780773'), longitude=Decimal('-76.77222599995616'))
Row(state='Maryland', location='Oxon Hill', address='6201 Livingston Rd Oxon Hill, MD 20745 US', latitude=Decimal('38.80364578962447'), longitude=Decimal('-76.99167196867623'))
Row(state='Maryland', location='Parkville', address='7711 Harford Rd Parkville, MD 21234 US', latitude=Decimal('39.373190539566004'), longitude=Decimal('-76.54258162505226'))
Row(state='Maryland', location='Pikesville', address='1809 Reisterstown Rd Ste 134 Pikesville, MD 21208 US', latitude=Decimal('39.388347287765285'), longitude=Decimal('-76.73605543096829'))
Row(state='Maryland', location='Potomac', address='10116 River Rd Unit B Potomac, MD 20854 US', latitude=Decimal('39.016661299999996'), longitude=Decimal('-77.2089559'))
Row(state='Maryland', location='Prince Frederick', address='144 W Dares Beach Rd Prince Frederick, MD 20678 US', latitude=Decimal('38.54466171997771'), longitude=Decimal('-76.59210094780951'))
Row(state='Maryland', location='Rockville', address='865 Rockville Pike Ste B Rockville, MD 20852 US', latitude=Decimal('39.07526384358975'), longitude=Decimal('-77.1378042763244'))
Row(state='Maryland', location='Rosedale', address='8652 Pulaski Hwy Rosedale, MD 21237 US', latitude=Decimal('39.33537698500711'), longitude=Decimal('-76.48506029799496'))
Row(state='Maryland', location='Salisbury', address='2408B N Salisbury Blvd Salisbury, MD 21801 US', latitude=Decimal('38.40314223677961'), longitude=Decimal('-75.56972900580196'))
Row(state='Maryland', location='Severna Park', address='575 Ritchie Hwy Severna Park, MD 21146 US', latitude=Decimal('39.07750802719245'), longitude=Decimal('-76.54460862881808'))
Row(state='Maryland', location='Silver Spring', address='907 Ellsworth Dr Silver Spring, MD 20910 US', latitude=Decimal('38.9966311'), longitude=Decimal('-77.0261864'))
Row(state='Maryland', location='Sykesville', address='6400F Ridge Rd Ste 1 Sykesville, MD 21784 US', latitude=Decimal('39.398603468661506'), longitude=Decimal('-76.93320895635837'))
Row(state='Maryland', location='Towson', address='801 Goucher Blvd Towson, MD 21286 US', latitude=Decimal('39.398285220558115'), longitude=Decimal('-76.58570495763121'))
Row(state='Maryland', location='Upper Marlboro', address='2 Watkins Park Dr Upper Marlboro, MD 20774 US', latitude=Decimal('38.899933076227434'), longitude=Decimal('-76.79169209816494'))
Row(state='Maryland', location='Waldorf', address='3250 Crain Hwy Waldorf, MD 20603 US', latitude=Decimal('38.622815'), longitude=Decimal('-76.913427'))
Row(state='Maryland', location='Westminster', address='631 Baltimore Blvd Unit 102 Westminster, MD 21157 US', latitude=Decimal('39.56205587465604'), longitude=Decimal('-76.97161099747241'))
Row(state='Maryland', location='Wheaton', address='11160 Viers Mill Rd Wheaton, MD 20902 US', latitude=Decimal('39.036633'), longitude=Decimal('-77.054969'))
Row(state='Maryland', location='Windsor Mill', address='7091 Security Blvd Ste 102 Windsor Mill, MD 21244 US', latitude=Decimal('39.312568'), longitude=Decimal('-76.755543'))
Row(state='Washington DC', location='Washington DC', address='625 Monroe St NE Ste A8 Washington, DC 20017 US', latitude=Decimal('38.932063039598475'), longitude=Decimal('-76.99645105759248'))
Row(state='Tennessee', location='Brentwood', address='269 Franklin Rd Brentwood, TN 37027 US', latitude=Decimal('36.02975268599454'), longitude=Decimal('-86.79147689938827'))
Row(state='Tennessee', location='Chattanooga', address='2122 Gunbarrel Rd Chattanooga, TN 37421 US', latitude=Decimal('35.034478'), longitude=Decimal('-85.152574'))
Row(state='Tennessee', location='Clarksville', address='625 Kennedy Ln Clarksville, TN 37040 US', latitude=Decimal('36.59816674818337'), longitude=Decimal('-87.2860759795567'))
Row(state='Tennessee', location='Cookeville', address='1255 Interstate Dr Ste D109 Cookeville, TN 38501 US', latitude=Decimal('36.13873609844718'), longitude=Decimal('-85.5074396370312'))
Row(state='Tennessee', location='Cordova', address='695 N Germantown Pkwy 101 Cordova, TN 38018 US', latitude=Decimal('35.144431'), longitude=Decimal('-89.796033'))
Row(state='Tennessee', location='Franklin', address='430 Cool Springs Blvd Ste 100 Franklin, TN 37067 US', latitude=Decimal('35.9451965'), longitude=Decimal('-86.8252433'))
Row(state='Tennessee', location='Hendersonville', address='214 Indian Lake Blvd Hendersonville, TN 37075 US', latitude=Decimal('36.3209576'), longitude=Decimal('-86.59941309999999'))
Row(state='Tennessee', location='Knoxville', address='7600 Kingston Pike Ste 1348A Knoxville, TN 37919 US', latitude=Decimal('35.92430095947433'), longitude=Decimal('-84.03702542253801'))
Row(state='Tennessee', location='Memphis', address='5865 Poplar Ave Ste 104 Memphis, TN 38119 US', latitude=Decimal('35.101946399999996'), longitude=Decimal('-89.86569279999999'))
Row(state='Tennessee', location='Murfreesboro', address='479 N Thompson Ln Murfreesboro, TN 37129 US', latitude=Decimal('35.85564006237146'), longitude=Decimal('-86.43091842432705'))
Row(state='Tennessee', location='Nashville', address='96 White Bridge Rd Ste 103 Nashville, TN 37205 US', latitude=Decimal('36.12949220015436'), longitude=Decimal('-86.85315586664262'))
Row(state='Tennessee', location='Sevierville', address='1713 Parkway Sevierville, TN 37862 US', latitude=Decimal('35.83063092464802'), longitude=Decimal('-83.57297060921002'))
Row(state='Tennessee', location='Smyrna', address='715 Team Blvd Smyrna, TN 37167 US', latitude=Decimal('35.97942227666221'), longitude=Decimal('-86.5642860674336'))
Row(state='Iowa', location='Ames', address='435 S Duff Ave Ste 102 Ames, IA 50010 US', latitude=Decimal('42.01762602548903'), longitude=Decimal('-93.61099249418032'))
Row(state='Iowa', location='Ankeny', address='2125 SE Delaware Ave Ankeny, IA 50021 US', latitude=Decimal('41.709325487080214'), longitude=Decimal('-93.5807689589128'))
Row(state='Iowa', location='Cedar Rapids', address='4444 1st Ave. NE Suite 538 Cedar Rapids, IA 52402 US', latitude=Decimal('42.0257279'), longitude=Decimal('-91.6278471'))
Row(state='Iowa', location='Davenport', address='5270 Elmore Ave Ste 3 Davenport, IA 52807 US', latitude=Decimal('41.57325064748647'), longitude=Decimal('-90.52935652944772'))
Row(state='Iowa', location='Des Moines', address='3737 Merle Hay Rd Ste 100 Des Moines, IA 50310 US', latitude=Decimal('41.628907965990614'), longitude=Decimal('-93.697164007447'))
Row(state='Iowa', location='Dubuque', address='3450 Dodge St Dubuque, IA 52003 US', latitude=Decimal('42.4915116'), longitude=Decimal('-90.72015390000001'))
Row(state='Iowa', location='Iowa City', address='201 S Clinton St Ste 112 Iowa City, IA 52240 US', latitude=Decimal('41.658216100000004'), longitude=Decimal('-91.535465'))
Row(state='Iowa', location='Sioux City', address='5001 Sergeant Rd Ste 240 Sioux City, IA 51106 US', latitude=Decimal('42.4457126'), longitude=Decimal('-96.3431502'))
Row(state='Iowa', location='West Des Moines', address='490 S 68th St Ste 110 West Des Moines, IA 50266 US', latitude=Decimal('41.562482615708745'), longitude=Decimal('-93.799376757745'))
In [40]:
# Read only certain columns in a row
rows = session.execute('SELECT * FROM testing.chipotle_stores')
for row in rows:
    print(row.state,row.location)
Indiana Aurora
Indiana Avon
Indiana Bloomington
Indiana Carmel
Indiana Columbus
Indiana Crown Point
Indiana Evansville
Indiana Fishers
Indiana Fort Wayne
Indiana Highland
Indiana Indianapolis
Indiana Kokomo
Indiana Lafayette
Indiana Merrillville
Indiana Michigan City
Indiana Mishawaka
Indiana Munster
Indiana Noblesville
Indiana Plainfield
Indiana Portage
Indiana Richmond
Indiana South Bend
Indiana Speedway
Indiana Valparaiso
Indiana West Lafayette
Indiana Westfield
Florida Altamonte Springs
Florida Apopka
Florida Aventura
Florida Boca Raton
Florida Boynton Beach
Florida Bradenton
Florida Brandon
Florida Brooksville
Florida Cape Coral
Florida Clearwater
Florida Clermont
Florida Coral Springs
Florida Cutler Bay
Florida Dania Beach
Florida Davenport
Florida Davie
Florida Daytona Beach
Florida Deerfield Beach
Florida Deland
Florida Delray Beach
Florida Destin
Florida Doral
Florida Estero
Florida Fern Park
Florida Fort Lauderdale
Florida Fort Myers
Florida Ft Lauderdale
Florida Gainesville
Florida Greenacres
Florida Hialeah
Florida Hollywood
Florida Homestead
Florida Jacksonville
Florida Jacksonville Beach
Florida Jupiter
Florida Kissimmee
Florida Lake Mary
Florida Lake Worth
Florida Lakeland
Florida Lakewood Ranch
Florida Largo
Florida Lauderhill
Florida Lutz
Florida Melbourne
Florida Miami
Florida Miami Lakes
Florida Miramar
Florida Mount Dora
Florida Naples
Florida New Port Richey
Florida North Miami
Florida North Port
Florida Ocala
Florida Ocoee
Florida Orlando
Florida Ormond Beach
Florida Oviedo
Florida Palm Beach Gardens
Florida Palm Coast
Florida Palm Harbor
Florida Panama City
Florida Panama City Beach
Florida Pembroke Pines
Florida Pensacola
Florida Pinecrest
Florida Pinellas Park
Florida Plantation
Florida Pompano Beach
Florida Port Orange
Florida Port Richey
Florida Port Saint Lucie
Florida Saint Augustine
Florida Saint Cloud
Florida Saint Petersburg
Florida Sanford
Florida Sarasota
Florida Seminole
Florida South Miami
Florida Stuart
Florida Sunrise
Florida Tallahassee
Florida Tampa
Florida Temple Terrace
Florida Vero Beach
Florida Wellington
Florida West Palm Beach
Florida Weston
Florida Windermere
Florida Winter Garden
Florida Winter Haven
Florida Winter Park
Florida Winter Springs
Delaware Dover
Delaware Middletown
Delaware New Castle
Delaware Newark
Delaware Rehoboth Beach
Delaware Wilmington
Rhode Island Cranston
Rhode Island East Greenwich
Rhode Island Johnston
Rhode Island Lincoln
Rhode Island Middletown
Rhode Island Providence
Rhode Island Smithfield
Rhode Island Warwick
Connecticut Branford
Connecticut Bridgeport
Connecticut Canton
Connecticut Danbury
Connecticut Darien
Connecticut Enfield
Connecticut Fairfield
Connecticut Glastonbury
Connecticut Hamden
Connecticut Manchester
Connecticut Middletown
Connecticut Milford
Connecticut New Haven
Connecticut Newington
Connecticut Riverside
Connecticut Shelton
Connecticut Southington
Connecticut Wallingford
Connecticut West Hartford
Connecticut West Haven
Connecticut Wethersfield
Pennsylvania Abington
Pennsylvania Allentown
Pennsylvania Allison Park
Pennsylvania Altoona
Pennsylvania Ardmore
Pennsylvania Bensalem
Pennsylvania Blue Bell
Pennsylvania Bridgeville
Pennsylvania Camp Hill
Pennsylvania Canonsburg
Pennsylvania Carlisle
Pennsylvania Chambersburg
Pennsylvania Cranberry Township
Pennsylvania Dickson City
Pennsylvania Doylestown
Pennsylvania Dresher
Pennsylvania East Liberty
Pennsylvania Easton
Pennsylvania Erie
Pennsylvania Exton
Pennsylvania Glen Mills
Pennsylvania Greensburg
Pennsylvania Hanover
Pennsylvania Harrisburg
Pennsylvania Havertown
Pennsylvania Hermitage
Pennsylvania Hershey
Pennsylvania Indiana
Pennsylvania King Of Prussia
Pennsylvania Lancaster
Pennsylvania Langhorne
Pennsylvania Lebanon
Pennsylvania Lewisburg
Pennsylvania Malvern
Pennsylvania Mechanicsburg
Pennsylvania Media
Pennsylvania Monroeville
Pennsylvania Murrysville
Pennsylvania Newtown
Pennsylvania Newtown Square
Pennsylvania North Wales
Pennsylvania Philadelphia
Pennsylvania Pittsburgh
Pennsylvania Plymouth Meeting
Pennsylvania Reading
Pennsylvania Selinsgrove
Pennsylvania Shrewsbury
Pennsylvania Springfield
Pennsylvania State College
Pennsylvania Temple
Pennsylvania Trevose
Pennsylvania Warminster
Pennsylvania Warrington
Pennsylvania Washington
Pennsylvania Wayne
Pennsylvania West Chester
Pennsylvania Wexford
Pennsylvania Whitehall
Pennsylvania Wilkes Barre
Pennsylvania Willow Grove
Pennsylvania Wyncote
Pennsylvania York
Oklahoma Edmond
Oklahoma Moore
Oklahoma Norman
Oklahoma Oklahoma City
Oklahoma Stillwater
Oklahoma Tulsa
New York Albany
New York Amherst
New York Astoria
New York Bay Shore
New York Bohemia
New York Bronx
New York Brooklyn
New York Buffalo
New York Carle Place
New York Central Valley
New York Cheektowaga
New York Cicero
New York Clifton Park
New York Commack
New York Deer Park
New York Dobbs Ferry
New York East Meadow
New York East Northport
New York Elmhurst
New York Elmont
New York Farmingdale
New York Fishkill
New York Forest Hills
New York Garden City
New York Great Neck
New York Hauppauge
New York Hicksville
New York Howard Beach
New York Huntington Station
New York Ithaca
New York Jackson Heights
New York Jamaica
New York Kingston
New York Lake Grove
New York Lake Ronkonkoma
New York Latham
New York Lawrence
New York Levittown
New York Little Neck
New York Liverpool
New York Long Island City
New York Merrick
New York Middletown
New York Mineola
New York Mohegan Lake
New York Mount Kisco
New York New Hartford
New York New Hyde Park
New York New York
New York Niagara Falls
New York Oceanside
New York Patchogue
New York Pelham
New York Plattsburgh
New York Port Jefferson Station
New York Queensbury
New York Rego Park
New York Rensselaer
New York Riverhead
New York Rochester
New York Rye Brook
New York Saratoga Springs
New York Schenectady
New York Selden
New York Staten Island
New York Syosset
New York Syracuse
New York Tonawanda
New York Uniondale
New York Valley Stream
New York Vestal
New York Victor
New York Wantagh
New York Watertown
New York Webster
New York West Nyack
New York White Plains
New York Williamsville
New York Yonkers
Ohio Akron
Ohio Alliance
Ohio Amelia
Ohio Amherst
Ohio Anderson
Ohio Ashland
Ohio Ashtabula
Ohio Athens
Ohio Austintown
Ohio Avon
Ohio Barberton
Ohio Beavercreek
Ohio Bellefontaine
Ohio Bexley
Ohio Blue Ash
Ohio Boardman
Ohio Bowling Green
Ohio Brecksville
Ohio Brooklyn
Ohio Brunswick
Ohio Cambridge
Ohio Canal Winchester
Ohio Canfield
Ohio Canton
Ohio Chillicothe
Ohio Cincinnati
Ohio Circleville
Ohio Cleveland
Ohio Columbus
Ohio Cortland
Ohio Cuyahoga Falls
Ohio Dayton
Ohio Delaware
Ohio Dublin
Ohio Elyria
Ohio Englewood
Ohio Euclid
Ohio Fairfield
Ohio Fairfield Township
Ohio Fairview Park
Ohio Findlay
Ohio Gahanna
Ohio Garfield Heights
Ohio Grandview Heights
Ohio Grove City
Ohio Hamilton
Ohio Harrison
Ohio Heath
Ohio Highland Heights
Ohio Hilliard
Ohio Holland
Ohio Huber Heights
Ohio Hudson
Ohio Independence
Ohio Jeffersonville
Ohio Kent
Ohio Kettering
Ohio Lakewood
Ohio Lancaster
Ohio Liberty Township
Ohio Lima
Ohio Loveland
Ohio Lyndhurst
Ohio Mansfield
Ohio Marion
Ohio Marysville
Ohio Mason
Ohio Massillon
Ohio Maumee
Ohio Mayfield Heights
Ohio Medina
Ohio Mentor
Ohio Miamisburg
Ohio Middleburg Heights
Ohio Milford
Ohio Monroe
Ohio Mount Vernon
Ohio New Albany
Ohio New Philadelphia
Ohio Newark
Ohio North Canton
Ohio North Olmsted
Ohio North Ridgeville
Ohio Northfield
Ohio Norwood
Ohio Obetz
Ohio Ontario
Ohio Oregon
Ohio Oxford
Ohio Painesville
Ohio Parma
Ohio Perrysburg
Ohio Pickerington
Ohio Powell
Ohio Ravenna
Ohio Reynoldsburg
Ohio Saint Clairsville
Ohio Sandusky
Ohio Sharonville
Ohio Sheffield Village
Ohio Sidney
Ohio Solon
Ohio South Euclid
Ohio Springboro
Ohio Springdale
Ohio Springfield
Ohio Stow
Ohio Streetsboro
Ohio Strongsville
Ohio Tiffin
Ohio Toledo
Ohio Troy
Ohio Twinsburg
Ohio Uniontown
Ohio Wadsworth
Ohio Warren
Ohio Warrensville Heights
Ohio Washington Township
Ohio West Chester
Ohio Westerville
Ohio Westlake
Ohio Whitehall
Ohio Willoughby
Ohio Woodmere
Ohio Wooster
Ohio Xenia
Ohio Youngstown
Ohio Zanesville
New Jersey Basking Ridge
New Jersey Bernardsville
New Jersey Bloomfield
New Jersey Bound Brook
New Jersey Brick
New Jersey Bridgewater
New Jersey Cherry Hill
New Jersey Cinnaminson
New Jersey Clark
New Jersey Clifton
New Jersey Closter
New Jersey Deptford
New Jersey East Brunswick
New Jersey East Hanover
New Jersey East Rutherford
New Jersey Eatontown
New Jersey Edgewater
New Jersey Edison
New Jersey Englewood
New Jersey Fort Lee
New Jersey Freehold
New Jersey Hackensack
New Jersey Hillsborough
New Jersey Hoboken
New Jersey Holmdel
New Jersey Howell
New Jersey Jersey City
New Jersey Kearny
New Jersey Lawrenceville
New Jersey Lodi
New Jersey Madison
New Jersey Manahawkin
New Jersey Marlton
New Jersey Mays Landing
New Jersey Metuchen
New Jersey Montvale
New Jersey Moorestown
New Jersey Morris Plains
New Jersey Mount Laurel
New Jersey New Brunswick
New Jersey New Providence
New Jersey Newark
New Jersey North Brunswick
New Jersey Paramus
New Jersey Parsippany
New Jersey Princeton
New Jersey Ramsey
New Jersey Red Bank
New Jersey Rockaway
New Jersey Sea Girt
New Jersey Secaucus
New Jersey Sicklerville
New Jersey South Plainfield
New Jersey Springfield
New Jersey Teterboro
New Jersey Toms River
New Jersey Union
New Jersey Voorhees
New Jersey Watchung
New Jersey Wayne
New Jersey West Caldwell
New Jersey West Orange
New Jersey Westfield
New Jersey Woodbridge
Nevada Carson City
Nevada Henderson
Nevada Las Vegas
Nevada North Las Vegas
Nevada Reno
Nevada Sparks
Wyoming Cheyenne
Nebraska Bellevue
Nebraska Lincoln
Nebraska Omaha
Nebraska Papillion
West Virginia Barboursville
West Virginia Charleston
West Virginia Huntington
West Virginia Martinsburg
West Virginia Morgantown
North Dakota Fargo
Kansas Derby
Kansas Kansas City
Kansas Lawrence
Kansas Leawood
Kansas Lenexa
Kansas Manhattan
Kansas Mission
Kansas Olathe
Kansas Overland Park
Kansas Prairie Village
Kansas Salina
Kansas Shawnee
Kansas Topeka
Kansas Wichita
South Carolina Anderson
South Carolina Bluffton
South Carolina Charleston
South Carolina Clemson
South Carolina Columbia
South Carolina Florence
South Carolina Greenville
South Carolina Mt Pleasant
South Carolina Myrtle Beach
South Carolina North Augusta
South Carolina North Charleston
South Carolina North Myrtle Beach
South Carolina Spartanburg
South Carolina Summerville
North Carolina Apex
North Carolina Asheville
North Carolina Boone
North Carolina Burlington
North Carolina Cary
North Carolina Chapel Hill
North Carolina Charlotte
North Carolina Concord
North Carolina Durham
North Carolina Fayetteville
North Carolina Fuquay Varina
North Carolina Garner
North Carolina Gastonia
North Carolina Goldsboro
North Carolina Greensboro
North Carolina Greenville
North Carolina Hickory
North Carolina High Point
North Carolina Huntersville
North Carolina Jacksonville
North Carolina Kernersville
North Carolina Matthews
North Carolina Monroe
North Carolina Mooresville
North Carolina Morrisville
North Carolina New Bern
North Carolina Pineville
North Carolina Raleigh
North Carolina Salisbury
North Carolina Smithfield
North Carolina Wake Forest
North Carolina Wilmington
North Carolina Winston Salem
North Carolina Winterville
Georgia Albany
Georgia Alpharetta
Georgia Athens
Georgia Atlanta
Georgia Augusta
Georgia Austell
Georgia Buford
Georgia Canton
Georgia Chamblee
Georgia Columbus
Georgia Conyers
Georgia Cumming
Georgia Dawsonville
Georgia Decatur
Georgia Douglasville
Georgia Duluth
Georgia East Point
Georgia Fayetteville
Georgia Gainesville
Georgia Hinesville
Georgia Kennesaw
Georgia Lawrenceville
Georgia Loganville
Georgia Macon
Georgia Marietta
Georgia McDonough
Georgia Morrow
Georgia Newnan
Georgia Norcross
Georgia Peachtree City
Georgia Pooler
Georgia Roswell
Georgia Sandy Springs
Georgia Savannah
Georgia Snellville
Georgia Suwanee
Georgia Tucker
Georgia Warner Robins
Alabama Auburn
Alabama Birmingham
Alabama Cullman
Alabama Hoover
Alabama Huntsville
Alabama Mobile
Alabama Montgomery
Alabama Opelika
Alabama Prattville
Alabama Tuscaloosa
Alabama Vestavia Hills
Arizona Avondale
Arizona Buckeye
Arizona Casa Grande
Arizona Cave Creek
Arizona Chandler
Arizona Flagstaff
Arizona Gilbert
Arizona Glendale
Arizona Goodyear
Arizona Green Valley
Arizona Kingman
Arizona Lake Havasu City
Arizona Laveen
Arizona Marana
Arizona Maricopa
Arizona Mesa
Arizona Oro Valley
Arizona Peoria
Arizona Phoenix
Arizona Prescott
Arizona Prescott Valley
Arizona Queen Creek
Arizona Scottsdale
Arizona Sedona
Arizona Sierra Vista
Arizona Surprise
Arizona Tempe
Arizona Tucson
Arizona Yuma
Virginia Alexandria
Virginia Arlington
Virginia Ashburn
Virginia Blacksburg
Virginia Bristow
Virginia Burke
Virginia Centreville
Virginia Chantilly
Virginia Charlottesville
Virginia Chesapeake
Virginia Chester
Virginia Chesterfield
Virginia Colonial Heights
Virginia Culpeper
Virginia Danville
Virginia Dulles
Virginia Fairfax
Virginia Falls Church
Virginia Fredericksburg
Virginia Gainesville
Virginia Glen Allen
Virginia Hampton
Virginia Harrisonburg
Virginia Herndon
Virginia Leesburg
Virginia Lorton
Virginia Lynchburg
Virginia Manassas
Virginia McLean
Virginia Mechanicsville
Virginia Midlothian
Virginia Newport News
Virginia Norfolk
Virginia North Chesterfield
Virginia Oakton
Virginia Purcellville
Virginia Reston
Virginia Richmond
Virginia Roanoke
Virginia Rosslyn
Virginia Springfield
Virginia Stafford
Virginia Sterling
Virginia Suffolk
Virginia Vienna
Virginia Virginia Beach
Virginia Warrenton
Virginia West Springfield
Virginia Williamsburg
Virginia Winchester
Virginia Woodbridge
Maine Augusta
Maine Bangor
Maine Portland
Maine South Portland
Maine Westbrook
New Hampshire Bedford
New Hampshire Concord
New Hampshire Dover
New Hampshire Keene
New Hampshire Manchester
New Hampshire Nashua
New Hampshire Newington
Illinois Addison
Illinois Algonquin
Illinois Arlington Heights
Illinois Aurora
Illinois Berwyn
Illinois Bloomingdale
Illinois Bloomington
Illinois Bolingbrook
Illinois Bourbonnais
Illinois Bridgeview
Illinois Champaign
Illinois Chicago
Illinois Cicero
Illinois Countryside
Illinois Crestwood
Illinois Crystal Lake
Illinois Decatur
Illinois Deerfield
Illinois Dekalb
Illinois Downers Grove
Illinois East Peoria
Illinois Effingham
Illinois Elgin
Illinois Elk Grove Village
Illinois Elmhurst
Illinois Evanston
Illinois Fairview Heights
Illinois Frankfort
Illinois Franklin Park
Illinois Geneva
Illinois Glen Ellyn
Illinois Glenview
Illinois Gurnee
Illinois Hoffman Estates
Illinois Homer Glen
Illinois Homewood
Illinois Joliet
Illinois Kildeer
Illinois La Grange
Illinois Lake Bluff
Illinois Libertyville
Illinois Lincolnshire
Illinois Lincolnwood
Illinois Lockport
Illinois Machesney Park
Illinois Matteson
Illinois McHenry
Illinois Melrose Park
Illinois Mokena
Illinois Moline
Illinois Mt Prospect
Illinois Naperville
Illinois New Lenox
Illinois Niles
Illinois Normal
Illinois Norridge
Illinois Northbrook
Illinois Oak Brook
Illinois Oak Lawn
Illinois Oak Park
Illinois Oakbrook Terrace
Illinois Orland Park
Illinois Oswego
Illinois Palatine
Illinois Park Ridge
Illinois Peoria
Illinois Peru
Illinois Plainfield
Illinois Rockford
Illinois Rolling Meadows
Illinois Romeoville
Illinois Rosemont
Illinois Round Lake Beach
Illinois Saint Charles
Illinois Schaumburg
Illinois Skokie
Illinois South Elgin
Illinois South Holland
Illinois Springfield
Illinois Tinley Park
Illinois Vernon Hills
Illinois Villa Park
Illinois Warrenville
Illinois Waukegan
Illinois West Dundee
Illinois Westmont
Illinois Wheaton
Illinois Wheeling
Illinois Willowbrook
Montana Billings
Montana Bozeman
Montana Missoula
Massachusetts Attleboro
Massachusetts Bedford
Massachusetts Beverly
Massachusetts Billerica
Massachusetts Boston
Massachusetts Braintree
Massachusetts Brighton
Massachusetts Brockton
Massachusetts Brookline
Massachusetts Burlington
Massachusetts Cambridge
Massachusetts Chelmsford
Massachusetts Chicopee
Massachusetts Dedham
Massachusetts Dorchester
Massachusetts East Longmeadow
Massachusetts Framingham
Massachusetts Franklin
Massachusetts Hadley
Massachusetts Haverhill
Massachusetts Hingham
Massachusetts Holyoke
Massachusetts Hyannis
Massachusetts Leominster
Massachusetts Mansfield
Massachusetts Marlborough
Massachusetts Medford
Massachusetts Methuen
Massachusetts Milford
Massachusetts Natick
Massachusetts Newton
Massachusetts North Andover
Massachusetts North Dartmouth
Massachusetts Norwood
Massachusetts Peabody
Massachusetts Plymouth
Massachusetts Quincy
Massachusetts Randolph
Massachusetts Raynham
Massachusetts Reading
Massachusetts Saugus
Massachusetts Seekonk
Massachusetts Shrewsbury
Massachusetts Somerville
Massachusetts Swampscott
Massachusetts Waltham
Massachusetts Watertown
Massachusetts West Springfield
Massachusetts Westborough
Massachusetts Westford
Massachusetts Westwood
Massachusetts Woburn
Massachusetts Worcester
Mississippi Oxford
Mississippi Southaven
Missouri Belton
Missouri Blue Springs
Missouri Bridgeton
Missouri Chesterfield
Missouri Clayton
Missouri Columbia
Missouri Creve Coeur
Missouri Des Peres
Missouri Ellisville
Missouri Florissant
Missouri Grandview
Missouri Independence
Missouri Jefferson City
Missouri Joplin
Missouri Kansas City
Missouri Kirkwood
Missouri Lees Summit
Missouri O Fallon
Missouri Raytown
Missouri Saint Joseph
Missouri Saint Louis
Missouri Springfield
Missouri Warrensburg
New Mexico Albuquerque
New Mexico Clovis
New Mexico Farmington
New Mexico Las Cruces
New Mexico Santa Fe
California Alameda
California Alhambra
California Aliso Viejo
California Anaheim
California Apple Valley
California Arcadia
California Arroyo Grande
California Auburn
California Azusa
California Bakersfield
California Baldwin Hills
California Baldwin Park
California Banning
California Barstow
California Berkeley
California Beverly Hills
California Brea
California Brentwood
California Buena Park
California Burbank
California Cabazon
California Camarillo
California Campbell
California Canoga Park
California Capitola
California Carlsbad
California Carson
California Castro Valley
California Cerritos
California Chatsworth
California Chico
California Chino
California Chino Hills
California Chula Vista
California Citrus Heights
California City Of Industry
California Claremont
California Clovis
California Colma
California Commerce
California Compton
California Concord
California Corona
California Costa Mesa
California Culver City
California Cupertino
California Cypress
California Daly City
California Danville
California Davis
California Del Mar
California Diamond Bar
California Downey
California Dublin
California El Cajon
California El Cerrito
California El Segundo
California Elk Grove
California Encinitas
California Escondido
California Eureka
California Fair Oaks
California Fairfield
California Folsom
California Fontana
California Foothill Ranch
California Foster City
California Fountain Valley
California Fremont
California Fresno
California Fullerton
California Garden Grove
California Gardena
California Gilroy
California Glendale
California Glendora
California Gold River
California Goleta
California Granada Hills
California Hanford
California Hawthorne
California Hemet
California Hermosa Beach
California Hesperia
California Huntington Beach
California Imperial Beach
California Inglewood
California Irvine
California La Canada Flintridge
California La Habra
California La Jolla
California La Mesa
California La Quinta
California La Verne
California Lafayette
California Laguna Niguel
California Lake Forest
California Lakewood
California Lancaster
California Lebec
California Livermore
California Lodi
California Long Beach
California Los Angeles
California Los Gatos
California Madera
California Malibu
California Manteca
California Marina
California Marina Del Rey
California Martinez
California Menifee
California Merced
California Millbrae
California Milpitas
California Mira Loma
California Mission Hills
California Mission Viejo
California Modesto
California Monrovia
California Montclair
California Montebello
California Monterey
California Monterey Park
California Moorpark
California Moreno Valley
California Morgan Hill
California Mountain View
California Murrieta
California Napa
California National City
California Newark
California Newport Beach
California Norco
California North Hollywood
California Northridge
California Novato
California Oakland
California Oceanside
California Ontario
California Orange
California Oroville
California Oxnard
California Pacific Palisades
California Palm Desert
California Palm Springs
California Palmdale
California Palo Alto
California Panorama City
California Paramount
California Pasadena
California Paso Robles
California Perris
California Petaluma
California Pico Rivera
California Pinole
California Pittsburg
California Placentia
California Placerville
California Pleasant Hill
California Pleasanton
California Pomona
California Porterville
California Poway
California Rancho Cordova
California Rancho Cucamonga
California Rancho Santa Margarita
California Redding
California Redlands
California Redondo Beach
California Redwood City
California Rialto
California Riverbank
California Riverside
California Rocklin
California Rohnert Park
California Rolling Hills Estates
California Rosemead
California Roseville
California Sacramento
California Salinas
California San Bernardino
California San Bruno
California San Carlos
California San Clemente
California San Diego
California San Fernando
California San Francisco
California San Jose
California San Leandro
California San Luis Obispo
California San Marcos
California San Mateo
California San Pedro
California San Rafael
California San Ramon
California Sand City
California Santa Ana
California Santa Barbara
California Santa Clara
California Santa Clarita
California Santa Cruz
California Santa Maria
California Santa Monica
California Santa Rosa
California Santee
California Seal Beach
California Selma
California Sherman Oaks
California Signal Hill
California Simi Valley
California South Gate
California South Lake Tahoe
California Stockton
California Studio City
California Sunnyvale
California Tarzana
California Temecula
California Temple City
California Thousand Oaks
California Torrance
California Tracy
California Tulare
California Turlock
California Tustin
California Ukiah
California Union City
California Upland
California Vacaville
California Valencia
California Vallejo
California Van Nuys
California Ventura
California Visalia
California Vista
California Walnut
California Walnut Creek
California Walnut Park
California West Covina
California West Sacramento
California Westlake Village
California Westminster
California Whittier
California Woodland Hills
California Yuba City
Michigan Adrian
Michigan Allen Park
Michigan Ann Arbor
Michigan Bloomfield Hills
Michigan Brighton
Michigan Canton
Michigan Chesterfield
Michigan East Lansing
Michigan Flint
Michigan Grand Rapids
Michigan Grandville
Michigan Holland
Michigan Kalamazoo
Michigan Kentwood
Michigan Lansing
Michigan Madison Heights
Michigan Mt Pleasant
Michigan Northville
Michigan Novi
Michigan Orion
Michigan Portage
Michigan Rochester Hills
Michigan Roseville
Michigan Royal Oak
Michigan Saginaw
Michigan Shelby Township
Michigan Southfield
Michigan Sterling Heights
Michigan Taylor
Michigan Troy
Michigan Warren
Michigan West Bloomfield
Michigan Woodhaven
Wisconsin Appleton
Wisconsin Ashwaubenon
Wisconsin Brookfield
Wisconsin Eau Claire
Wisconsin Grand Chute
Wisconsin Hales Corners
Wisconsin Hudson
Wisconsin Janesville
Wisconsin Madison
Wisconsin Menomonee Falls
Wisconsin Middleton
Wisconsin Milwaukee
Wisconsin Mount Pleasant
Wisconsin Pleasant Prairie
Wisconsin Wauwatosa
Vermont Burlington
Vermont Rutland
Oregon Beaverton
Oregon Bend
Oregon Corvallis
Oregon Eugene
Oregon Gresham
Oregon Happy Valley
Oregon Hillsboro
Oregon Keizer
Oregon Lake Oswego
Oregon Medford
Oregon Portland
Oregon Salem
Oregon Sherwood
Oregon Springfield
Oregon Tualatin
Oregon Wilsonville
Oregon Woodburn
Louisiana Baton Rouge
Louisiana Bossier City
Louisiana Gonzales
Louisiana Harahan
Louisiana Lafayette
Louisiana Mandeville
Louisiana Metairie
Louisiana New Orleans
Louisiana Shreveport
Louisiana Slidell
Washington Bellevue
Washington Bellingham
Washington Bonney Lake
Washington Burlington
Washington Everett
Washington Federal Way
Washington Issaquah
Washington Kennewick
Washington Kent
Washington Kirkland
Washington Lacey
Washington Lakewood
Washington Lynnwood
Washington Marysville
Washington Olympia
Washington Puyallup
Washington Redmond
Washington Renton
Washington Richland
Washington Sammamish
Washington Seattle
Washington Silverdale
Washington Spokane
Washington Tacoma
Washington Tukwila
Washington Vancouver
Washington Wenatchee
Washington Woodinville
Idaho Boise
Idaho Meridian
Utah Cottonwood Heights
Utah Layton
Utah Lehi
Utah Murray
Utah Orem
Utah Riverdale
Utah Saint George
Utah Salt Lake City
Utah Sandy
Utah West Bountiful
Colorado Arvada
Colorado Aurora
Colorado Boulder
Colorado Brighton
Colorado Castle Rock
Colorado Centennial
Colorado Colorado Springs
Colorado Commerce City
Colorado Denver
Colorado Englewood
Colorado Federal Heights
Colorado Fort Collins
Colorado Grand Junction
Colorado Greeley
Colorado Greenwood Village
Colorado Highlands Ranch
Colorado Lafayette
Colorado Lakewood
Colorado Littleton
Colorado Lone Tree
Colorado Longmont
Colorado Louisville
Colorado Loveland
Colorado Parker
Colorado Pueblo
Colorado Silverthorne
Colorado Thornton
Colorado Westminster
Colorado Wheat Ridge
Minnesota Apple Valley
Minnesota Baxter
Minnesota Blaine
Minnesota Bloomington
Minnesota Brooklyn Center
Minnesota Brooklyn Park
Minnesota Burnsville
Minnesota Champlin
Minnesota Chanhassen
Minnesota Chaska
Minnesota Columbia Heights
Minnesota Coon Rapids
Minnesota Cottage Grove
Minnesota Crystal
Minnesota Duluth
Minnesota Eagan
Minnesota Eden Prairie
Minnesota Edina
Minnesota Elk River
Minnesota Forest Lake
Minnesota Golden Valley
Minnesota Hastings
Minnesota Hopkins
Minnesota Lakeville
Minnesota Mankato
Minnesota Maple Grove
Minnesota Maplewood
Minnesota Minneapolis
Minnesota Minnetonka
Minnesota Oak Park Heights
Minnesota Plymouth
Minnesota Richfield
Minnesota Rochester
Minnesota Rogers
Minnesota Rosemount
Minnesota Roseville
Minnesota Saint Cloud
Minnesota Saint Paul
Minnesota Savage
Minnesota Shakopee
Minnesota Shoreview
Minnesota St Louis Park
Minnesota Vadnais Heights
Minnesota Wayzata
Minnesota West St Paul
Minnesota Woodbury
Texas Abilene
Texas Addison
Texas Allen
Texas Amarillo
Texas Arlington
Texas Austin
Texas Baytown
Texas Beaumont
Texas Bedford
Texas Carrollton
Texas Cedar Hill
Texas Cedar Park
Texas College Station
Texas Colleyville
Texas Conroe
Texas Coppell
Texas Copperas Cove
Texas Corinth
Texas Corpus Christi
Texas Cypress
Texas Dallas
Texas Deer Park
Texas Denton
Texas Desoto
Texas El Paso
Texas Euless
Texas Farmers Branch
Texas Flower Mound
Texas Fort Bliss
Texas Fort Hood
Texas Fort Worth
Texas Friendswood
Texas Frisco
Texas Garland
Texas Georgetown
Texas Granbury
Texas Grand Prairie
Texas Grapevine
Texas Greenville
Texas Harker Heights
Texas Harlingen
Texas Houston
Texas Humble
Texas Huntsville
Texas Hurst
Texas Irving
Texas Katy
Texas Lake Worth
Texas Laredo
Texas Lewisville
Texas Longview
Texas Lubbock
Texas Mansfield
Texas McAllen
Texas McKinney
Texas Mesquite
Texas Midland
Texas Missouri City
Texas Murphy
Texas Nacogdoches
Texas New Braunfels
Texas North Richland Hills
Texas Odessa
Texas Pasadena
Texas Pearland
Texas Pflugerville
Texas Pharr
Texas Plano
Texas Port Arthur
Texas Red Oak
Texas Richardson
Texas Richmond
Texas Roanoke
Texas Rockwall
Texas Round Rock
Texas Rowlett
Texas San Antonio
Texas San Marcos
Texas Selma
Texas Sherman
Texas Southlake
Texas Spring
Texas Stafford
Texas Sugar Land
Texas Sunset Valley
Texas Temple
Texas Terrell
Texas Texarkana
Texas Tomball
Texas Tyler
Texas Waco
Texas Watauga
Texas Waxahachie
Texas Weatherford
Texas Webster
Texas West Lake Hills
Texas Wichita Falls
Arkansas Bentonville
Arkansas Conway
Arkansas Fayetteville
Arkansas Little Rock
Kentucky Bowling Green
Kentucky Burlington
Kentucky Covington
Kentucky Crescent Springs
Kentucky Erlanger
Kentucky Florence
Kentucky Ft Mitchell
Kentucky Hebron
Kentucky Highland Heights
Kentucky Lexington
Kentucky Louisville
Kentucky Newport
Kentucky Union
Maryland Annapolis
Maryland Aspen Hill
Maryland Baltimore
Maryland Bel Air
Maryland Bethesda
Maryland Bowie
Maryland Brandywine
Maryland Camp Springs
Maryland Capitol Heights
Maryland Chevy Chase
Maryland Clinton
Maryland College Park
Maryland Columbia
Maryland Damascus
Maryland Dunkirk
Maryland Easton
Maryland Edgewater
Maryland Ellicott City
Maryland Forest Hill
Maryland Forestville
Maryland Frederick
Maryland Fulton
Maryland Gaithersburg
Maryland Gambrills
Maryland Germantown
Maryland Glen Burnie
Maryland Greenbelt
Maryland Hagerstown
Maryland Hanover
Maryland Hunt Valley
Maryland Hyattsville
Maryland Kensington
Maryland La Plata
Maryland Lanham
Maryland Laurel
Maryland Lexington Park
Maryland Linthicum Heights
Maryland Lutherville Timonium
Maryland Mount Airy
Maryland New Carrollton
Maryland Ocean City
Maryland Olney
Maryland Owings Mills
Maryland Oxon Hill
Maryland Parkville
Maryland Pikesville
Maryland Potomac
Maryland Prince Frederick
Maryland Rockville
Maryland Rosedale
Maryland Salisbury
Maryland Severna Park
Maryland Silver Spring
Maryland Sykesville
Maryland Towson
Maryland Upper Marlboro
Maryland Waldorf
Maryland Westminster
Maryland Wheaton
Maryland Windsor Mill
Washington DC Washington DC
Tennessee Brentwood
Tennessee Chattanooga
Tennessee Clarksville
Tennessee Cookeville
Tennessee Cordova
Tennessee Franklin
Tennessee Hendersonville
Tennessee Knoxville
Tennessee Memphis
Tennessee Murfreesboro
Tennessee Nashville
Tennessee Sevierville
Tennessee Smyrna
Iowa Ames
Iowa Ankeny
Iowa Cedar Rapids
Iowa Davenport
Iowa Des Moines
Iowa Dubuque
Iowa Iowa City
Iowa Sioux City
Iowa West Des Moines
In [ ]:
# Creating a new keyspace "sales"
session.execute("CREATE KEYSPACE sales WITH replication = {'class':'SimpleStrategy', 'replication_factor' : 1};")
In [ ]:
# Altering a keyspace "sales"
session.execute("ALTER KEYSPACE sales WITH replication = {'class':'SimpleStrategy', 'replication_factor' : 3};")
In [ ]:
# Deleting a keyspace "sales"
session.execute("drop keyspace sales;")
In [ ]:
# Describe keyspace
session.execute("describe keyspaces")
In [68]:
# Create a new table "movies" in keyspace "testing"
session.execute("use testing")
session.execute("CREATE TABLE movies(movie_id int PRIMARY KEY,movie_name text,year_of_release int);")
Out[68]:
<cassandra.cluster.ResultSet at 0x2013c9269a0>
In [72]:
# Insert values in "movies" table 
session.execute("INSERT into movies(movie_id, movie_name, year_of_release)VALUES (1,'Toy Story',1995);")
Out[72]:
<cassandra.cluster.ResultSet at 0x2013f1b89a0>
In [73]:
# Print "movies" table
rows = session.execute('SELECT * FROM testing.movies')
for row in rows:
    print(row)
Row(movie_id=1, movie_name='Toy Story', year_of_release=1995)
In [74]:
# Insert more values in table "movies"
session.execute("INSERT into movies(movie_id, movie_name, year_of_release)VALUES (2,'Jumanji',1995);")
session.execute("INSERT into movies(movie_id, movie_name, year_of_release)VALUES (3,'Heat',1995);")
session.execute("INSERT into movies(movie_id, movie_name, year_of_release)VALUES (4,'Scream',1995);")
session.execute("INSERT into movies(movie_id, movie_name, year_of_release)VALUES (5,'Fargo',1996);")
Out[74]:
<cassandra.cluster.ResultSet at 0x2013c84e880>
In [75]:
# Print "movies" table
rows = session.execute('SELECT * FROM testing.movies')
for row in rows:
    print(row)
Row(movie_id=5, movie_name='Fargo', year_of_release=1996)
Row(movie_id=1, movie_name='Toy Story', year_of_release=1995)
Row(movie_id=2, movie_name='Jumanji', year_of_release=1995)
Row(movie_id=4, movie_name='Scream', year_of_release=1995)
Row(movie_id=3, movie_name='Heat', year_of_release=1995)
In [76]:
# Print "movies" table with movie_id=1
rows = session.execute('select movie_name from movies where movie_id = 1;')
for row in rows:
    print(row)
Row(movie_name='Toy Story')
In [79]:
# Update a row where movie_id = 4 from 1995 to 1996
session.execute('UPDATE movies SET year_of_release = 1996 WHERE movie_id = 4;')
rows = session.execute('SELECT * FROM testing.movies')
for row in rows:
    print(row)
Row(movie_id=5, movie_name='Fargo', year_of_release=1996)
Row(movie_id=1, movie_name='Toy Story', year_of_release=1995)
Row(movie_id=2, movie_name='Jumanji', year_of_release=1995)
Row(movie_id=4, movie_name='Scream', year_of_release=1996)
Row(movie_id=3, movie_name='Heat', year_of_release=1995)
In [80]:
# Delate a row where movie_id=5
session.execute('DELETE from movies WHERE movie_id = 5;')
rows = session.execute('SELECT * FROM testing.movies')
for row in rows:
    print(row)
Row(movie_id=1, movie_name='Toy Story', year_of_release=1995)
Row(movie_id=2, movie_name='Jumanji', year_of_release=1995)
Row(movie_id=4, movie_name='Scream', year_of_release=1996)
Row(movie_id=3, movie_name='Heat', year_of_release=1995)